forked from pimterry/server-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.26 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",
"version": "0.2.1",
"description": "An ultra-dumb component framework for server-side rendering, inspired by web components",
"main": "src/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.git"
},
"keywords": [
"webcomponents",
"web-components",
"components",
"templating",
"rendering",
"server",
"server-side"
],
"author": "Tim Perry",
"license": "MIT",
"bugs": {
"url": "https://github.com/pimterry/server-components/issues"
},
"homepage": "https://github.com/pimterry/server-components#readme",
"devDependencies": {
"chai": "^3.5.0",
"jshint": "^2.9.2",
"linkifyjs": "^2.0.0",
"mocha": "^2.4.5",
"np": "pimterry/np",
"watch": "^0.18.0"
},
"dependencies": {
"domino": "^1.0.23",
"validate-element-name": "^1.0.0"
},
"jshintConfig": {
"esversion": 6,
"node": true
},
"engines": {
"node": ">= 4.0.0"
}
}