-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "cerebellum",
"version": "0.10.0",
"description": "Controls your isomorphic apps",
"scripts": {
"build": "babel src --out-dir lib --stage 1",
"watch": "babel src --watch --out-dir lib --stage 1",
"test_build": "browserify -s Cerebellum index.js -o test/client/cerebellum_test_build.js",
"test": "npm run test_server && npm run test_client",
"test_server": "mocha test/server",
"test_client": "npm run test_build && mocha-phantomjs -s loadImages=false http://localhost:8000/",
"prepublish": "npm run build",
"start": "http-server test/client -p 8000"
},
"author": "Lari Hoppula",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.35",
"browserify": "^13.0.0",
"http-server": "^0.8.0",
"mocha": "^2.2.4",
"mocha-phantomjs": "^4.0.2",
"nock": "^5.2.1",
"phantomjs": "^1.9.16",
"should": "^8.1.1",
"supertest": "^1.1.0"
},
"dependencies": {
"array.prototype.find": "^1.0.0",
"cheerio": "^0.19.0",
"express": "^4.12.3",
"html5-history-api": "^4.2.0",
"immutable": "^3.7.6",
"native-promise-only": "^0.8.1",
"page": "^1.6.2",
"path-to-regexp": "^1.0.3",
"qs": "^6.0.2",
"vertebrae": "^1.1.2"
},
"main": "index.js",
"browser": {
"./lib/server": false
},
"repository": {
"type": "git",
"url": "https://github.com/SC5/cerebellum.git"
}
}