-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "done-ssr-middleware",
"version": "3.0.1",
"description": "Express/Connect middleware for DoneJS applications",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"copy": "node scripts/copy.js",
"mocha": "node test/test.js",
"test": "npm run copy && npm run mocha",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donejs/done-ssr-middleware.git"
},
"keywords": [
"DoneJS",
"server-side",
"rendering"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/donejs/done-ssr-middleware/issues"
},
"homepage": "https://github.com/donejs/done-ssr-middleware#readme",
"dependencies": {
"done-ssr": "^3.3.1"
},
"devDependencies": {
"can-component": "^4.0.0",
"can-define": "^2.0.0",
"can-fixture": "^3.0.0",
"can-route": "^4.0.0",
"can-route-pushstate": "^5.0.0",
"done-autorender": "^2.5.0",
"done-css": "^3.0.0",
"express": "^4.13.4",
"jquery": "2.x - 3.x",
"mocha": "^4.0.0",
"nock": "^9.0.11",
"recursive-copy": "^2.0.6",
"request": "^2.69.0",
"spawn-mochas": "^1.1.0",
"steal-tools": "^1.0.3"
}
}