-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
90 lines (90 loc) · 2.44 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "done-ssr",
"version": "3.3.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 --tag pre",
"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",
"devDependencies": {
"can-component": "^4.0.0",
"can-define": "^2.0.0",
"can-fixture": "^2.0.0",
"can-globals": "<2.0.0",
"can-route": "^4.0.0",
"can-route-pushstate": "^4.0.0",
"can-stache": "^4.0.0",
"copy-dir": "0.0.8",
"documentjs": "^0.5.0",
"done-autorender": "^2.6.1",
"done-css": "^3.0.1",
"es6-promise": "^4.1.0",
"fast-text-encoding": "^1.0.0",
"he": "^1.1.1",
"jquery": "2.x - 3.x",
"jshint": "^2.8.0",
"leakage": "0.4.0",
"nock": "^10.0.3",
"spawn-mochas": "^2.0.0",
"steal-stache": "^4.0.0",
"steal-tools": "^2.0.0",
"through2": "^2.0.1",
"uglify-js": "^3.3.19"
},
"dependencies": {
"can-dom-mutate": "^1.2.1",
"can-namespace": "^1.0.0",
"can-reflect": "^1.11.0",
"can-vdom": "^4.4.0",
"can-view-nodelist": "^4.0.0",
"can-zone": "^1.0.0",
"dom-patch": "^2.1.1",
"done-mutation": "^3.0.0",
"done-mutation-observer": "^1.0.1",
"donejs-node-web-streams": "^1.0.0",
"ir-clone": "^1.2.1",
"ir-reattach": "^5.0.0",
"is-promise": "^2.1.0",
"lodash.defaults": "^4.0.1",
"lru-cache": "^5.1.1",
"mime-types": "^2.1.17",
"node-fetch": "^2.0.0",
"once": "^1.4.0",
"steal": "^2.0.0",
"text-encoding": "^0.6.4",
"useragent": "^2.3.0",
"websocket": "^1.0.22",
"whatwg-url": "^7.0.0",
"xmlhttprequest2": "^1.0.0"
},
"greenkeeper": {
"ignore": [
"copy-dir"
]
}
}