-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"name": "mochahq",
"version": "1.5.1",
"description": "A pleasant GUI interface for Mocha",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:splodingsocks/mochahq.git"
},
"scripts": {
"test": "mocha",
"server:dev": "cd server && nodemon --exec 'babel-node app.js ./test-fixture'",
"client:compile": "cd client && npm run -s watch",
"client:serve": "cd client && npm run -s reload",
"start": "npm run -s server:dev & npm run -s client:serve & npm run -s client:compile",
"build": "babel server --out-dir server-dist; chmod a+x server-dist/app.js; cd client && npm run build",
"prepublish": "npm run build"
},
"bin": {
"mochahq": "server-dist/app.js"
},
"author": "Murphy Randle",
"license": "MIT",
"dependencies": {
"ansi-html": "0.0.5",
"babel-cli": "6.7.5",
"babel-plugin-transform-flow-strip-types": "6.7.0",
"babel-polyfill": "6.7.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-3": "6.5.0",
"babel-register": "6.7.2",
"balanced-match": "0.3.0",
"cors": "2.7.1",
"express": "4.13.4",
"fs-extra-promise": "0.3.1",
"glob": "7.0.3",
"lodash": "4.6.1",
"socket.io": "1.4.5",
"tree-kill": "1.0.0"
},
"devDependencies": {
"babel-polyfill": "6.7.4",
"concurrently": "2.0.0"
}
}