-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "server-components-static",
"version": "0.3.0",
"description": "Static content management plugin for Server Components",
"main": "src/index.js",
"scripts": {
"lint": "jshint . --exclude='node_modules' || exit 1",
"test": "npm run lint && mocha test/",
"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-static.git"
},
"keywords": [
"webcomponents",
"web-components",
"server-components",
"server-components-plugin",
"static",
"static-content"
],
"author": "Tim Perry",
"license": "MIT",
"bugs": {
"url": "https://github.com/pimterry/server-components-static/issues"
},
"homepage": "https://github.com/pimterry/server-components-static#readme",
"devDependencies": {
"chai": "^3.5.0",
"jshint": "^2.9.2",
"mocha": "^2.4.5",
"np": "pimterry/np",
"server-components": "^0.2.1",
"watch": "^0.18.0"
},
"peerDependencies": {
"server-components": "^0.2.0"
},
"dependencies": {
"lodash": "^4.12.0",
"path-is-inside": "^1.0.1",
"url-join": "^1.1.0"
},
"jshintConfig": {
"esversion": 6,
"node": true
}
}