-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "server-components-express",
"version": "0.1.0",
"description": "Express integration plugin for server components",
"main": "index.js",
"scripts": {
"lint": "jshint . --exclude='node_modules' || exit 1",
"test": "npm run lint && mocha test/ --recursive",
"dev": "watch 'npm run test -s' src/ test/",
"release:patch": "np patch",
"release:minor": "np minor",
"release:major": "np major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pimterry/server-components-express.git"
},
"keywords": [
"server-components",
"express",
"middleware",
"express-middleware",
"web-components",
"plugin"
],
"author": "Tim Perry <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pimterry/server-components-express/issues"
},
"homepage": "https://github.com/pimterry/server-components-express#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"jshint": "^2.9.2",
"mocha": "^2.5.3",
"np": "^2.6.0",
"watch": "^0.19.1"
},
"peerDependencies": {
"express": "^4.0.0",
"server-components": "^0.2.1",
"server-components-static": "^0.3.0"
},
"dependencies": {
"express": "^4.0.0",
"send": "^0.14.1",
"server-components": "^0.2.1",
"server-components-static": "^0.3.0"
},
"jshintConfig": {
"esversion": 6,
"node": true
}
}