-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "mmir-tooling",
"version": "7.0.0-beta5",
"description": "Build tools for MMIR projects",
"directories": {},
"repository": {
"type": "git",
"url": "https://github.com/mmig/mmir-tooling/"
},
"keywords": [
"mmir",
"cordova"
],
"bin": {
"mmirinstall": "./bin/cli-mmir-install.js"
},
"typesVersions": {
"<4.5": {
"*": [
"typings3.6/*"
]
}
},
"scripts": {
"build": "npm run build:clean && npm run build:index && tsc && npm run build:copy && npm run build:assets && npm run build:compat",
"build:index": "node -e \"require('fs-extra').copy('assets/index.d.ts','./src/index.d.ts'),require('fs-extra').copy('assets/index-webpack.d.ts','./src/index-webpack.d.ts')\"",
"build:clean": "node -e \"require('fs-extra').emptyDirSync('build')\"",
"build:copy": "node -e \"require('fs-extra').copy('build','./')\"",
"build:assets": "node -e \"require('fs-extra').copy('assets','./'),require('fs-extra').copy('assets','./build')\"",
"build:compat": "node -e \"require('fs-extra').emptyDirSync('typings3.6')\" && dtsdownlevel build --dir ../typings3.6",
"test": "node test.js",
"doc": "npm run doc:clean && npm run doc:gen",
"doc:clean": "node -e \"require('fs-extra').emptyDirSync('docs')\"",
"doc:gen": "cross-var typedoc --name \"$npm_package_name $npm_package_version\" index.d.ts"
},
"author": "MMIG team",
"license": "MIT",
"dependencies": {
"@scion-scxml/scxml": "^4.3.27",
"array-flatten": "^3.0.0",
"es6-promise": "^4.2.8",
"fs-extra": "^9.1.0",
"lodash": "^4.17.21",
"meow": "^9.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.180",
"@types/node": "^14.18.12",
"cross-var": "^1.1.0",
"eclint": "^2.8.1",
"mmir-lib": "^7.0.0-beta6",
"mmir-plugin-exports": "^2.6.0",
"typedoc": "^0.22.13",
"typedoc-plugin-external-module-name": "^4.0.6",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.6.2"
},
"peerDependencies": {
"mmir-lib": "^7.0.0-beta4"
}
}