forked from pixelprodev/appstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
49
{
"name": "@pixelprodotco/appstrap",
"version": "0.2.1",
"description": "Uber-configurable mock server for bootstrapping single page apps",
"main": "./dist/Appstrap.js",
"bin": "./dist/cli.js",
"author": "",
"license": "ISC",
"repository": "https://github.com/pixelprodotco/appstrap",
"scripts": {
"develop": "babel -s --ignore *.spec.js ./src --out-dir ./dist --watch",
"build": "npm run lint && babel --ignore *.spec.js ./src --out-dir ./dist",
"prepare": "npm run build",
"lint": "standard",
"test": "jest"
},
"dependencies": {
"@pixelprodotco/appstrap-management-interface": "0.2.1",
"body-parser": "1.17.2",
"commander": "^2.14.1",
"express": "^4.15.3",
"fs-extra": "^5.0.0",
"get-port": "^3.2.0",
"pre-commit": "^1.2.2",
"require-all": "^2.2.0",
"sleep-promise": "2.0.0",
"vhost": "^3.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"isomorphic-fetch": "^2.2.1",
"jest": "^20.0.4",
"sinon": "^4.4.9",
"standard": "^11.0.1",
"supertest": "^3.0.0"
},
"standard": {
"envs": [
"jest"
]
},
"pre-commit": [
"lint",
"test"
]
}