-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 985 Bytes
/
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
{
"name": "@hustle/parseconfig",
"version": "1.4.0",
"main": "./dist/actions.js",
"bin": "./dist/parseconfig.js",
"scripts": {
"clean": "rm -rf dist/; rm -rf .test-compiled/",
"build": "babel src/ -d dist/",
"flow-typed-install": "flow-typed install -s -o --ignoreDeps dev",
"prepublish": "yarn run build; ./shebangify",
"postinstall": "./.hooks/setup-hooks",
"test": "yarn run clean; yarn run build; babel test/ -d .test-compiled/; mocha .test-compiled/",
"integration-test": "yarn run clean; yarn run build; babel integration-test/ -d .integration-test-compiled/; mocha .integration-test-compiled/"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.66.0",
"flow-typed": "^2.2.3",
"mocha": "^5.0.1"
},
"dependencies": {
"axios": "^0.18.0",
"commander": "^2.14.1",
"lodash.isequal": "^4.5.0",
"lodash.omit": "^4.5.0"
}
}