forked from composerize/composerize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.32 KB
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
{
"name": "composerize-plus",
"version": "1.4.0",
"main": "dist/composerize.js",
"license": "MIT",
"scripts": {
"test": "yarn run typecheck && yarn run eslint && yarn run jest",
"build": "rollup -c",
"jest": "node_modules/.bin/jest --no-watchman",
"eslint": "eslint *.js src/**/*.js --fix",
"typecheck": "flow check"
},
"bin": {
"composerize-plus": "cli.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.5.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.19.1",
"flow-bin": "^0.71.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"rollup": "^0.59.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {
"@sharkcore/eslint-config": "^1.1.0-alpha.3",
"child-process-promise": "^2.2.1",
"core-js": "^2.5.5",
"deepmerge": "^2.1.0",
"yamljs": "^0.3.0",
"yargs-parser": "^10.0.0"
},
"files": [
"dist/composerize.js",
"cli.js"
]
}