-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "donejs-nw",
"version": "1.0.0",
"description": "A plugin to add support for nw.js to your DoneJS application",
"homepage": "http://donejs.com/",
"license": "MIT",
"main": "lib",
"scripts": {
"test": "npm run jshint && npm run mocha",
"jshint": "jshint lib/. test/. default/. --config",
"mocha": "mocha test/ --timeout 120000",
"publish": "git push origin --tags && git push origin",
"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": "[email protected]:donejs/donejs-nw.git",
"github": "https://github.com/donejs/donejs-nw"
},
"author": {
"name": "Bitovi",
"email": "[email protected]",
"web": "http://bitovi.com/"
},
"keywords": [
"DoneJS"
],
"dependencies": {
"ejs": "^2.3.4",
"lodash": "^4.17.4",
"q": "^1.4.1",
"yeoman-generator": "^1.1.0"
},
"devDependencies": {
"fs-extra": "^2.0.0",
"jshint": "^2.8.0",
"mocha": "^3.2.0",
"yeoman-test": "^1.6.0"
}
}