-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 995 Bytes
/
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
{
"name": "vdom-streaming-serializer",
"version": "0.1.1",
"description": "",
"homepage": "",
"repository": {
"type": "git",
"url": "git://github.com//vdom-streaming-serializer.git"
},
"author": {
"name": "",
"email": "",
"url": ""
},
"scripts": {
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postversion": "git push --tags && git checkout master && git branch -D release && git push",
"test": "npm run jshint && npm run mocha",
"mocha": "mocha test/test.js",
"jshint": "jshint ./*.js --config",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"main": "vdom-streaming-serializer.js",
"keywords": [],
"devDependencies": {
"can-vdom": "^3.0.1",
"jshint": "^2.8.0",
"mocha": "^3.2.0"
}
}