forked from donejs/done-ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.88 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "done-ssr",
"version": "0.14.0-pre.1",
"description": "Server-side rendering for CanJS applications",
"main": "lib/index.js",
"scripts": {
"jshint": "jshint lib/. test/*.js --config",
"copy": "node scripts/copy.js",
"test:only": "npm run copy && npm run mocha",
"test": "npm run jshint && npm run test:only",
"mocha": "node test/test.js",
"publish": "git push origin && git push origin --tags",
"release:pre": "npm version prerelease && npm publish",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"document": "documentjs"
},
"repository": {
"type": "git",
"url": "https://github.com/donejs/done-ssr.git"
},
"keywords": [
"stealjs",
"canjs",
"donejs"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/donejs/done-ssr/issues"
},
"homepage": "https://github.com/donejs/done-ssr",
"peerDependencies": {
"can-util": "*",
"can-vdom": "*",
"can-zone": "*",
"can-component": "*",
"can-define": "*",
"can-fixture": "*",
"can-list": "*",
"can-map": "*",
"can-map-define": "*",
"can-route": "*",
"can-route-pushstate": "*",
"can-stache": "*",
"steal": "*",
"steal-stache": "*",
"done-autorender": "*",
"jquery": "*",
"done-ssr-middleware": "*"
},
"devDependencies": {
"copy-dir": "*",
"documentjs": ">=0.3.0",
"es6-promise": "^3.1.2",
"jshint": "^2.8.0",
"nock": "^8.0.0",
"mocha": "3.2.0",
"spawn-mochas": "git+https://github.com/donejs-next/spawn-mochas",
"through2": "^2.0.1"
},
"dependencies": {
"lodash.defaults": "^4.0.1",
"websocket": "^1.0.22",
"xmlhttprequest": "^1.8.0"
},
"system": {
"npmDependencies": [
"can",
"steal-qunit"
]
}
}