-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
{
"name": "donejs-electron",
"version": "2.0.0",
"description": "A plugin to add support for Electron to your DoneJS application",
"homepage": "https://github.com/donejs/donejs-electron",
"author": {
"name": "Bitovi",
"email": "contact@bitovi.com",
"url": "http://bitovi.com"
},
"repository": {
"type": "git",
"url": "git@github.com:donejs/donejs-electron.git",
"github": "https://github.com/donejs/donejs-electron"
},
"license": "MIT",
"main": "lib/",
"scripts": {
"test": "npm run jshint && npm run mocha",
"jshint": "jshint test/. default/index.js --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"
},
"keywords": [
"donejs",
"electron",
"generator"
],
"dependencies": {
"donejs-generator-common": "^1.0.5",
"ejs": "^2.5.2",
"lodash": "^4.16.4",
"q": "^1.4.1",
"yeoman-generator": "^1.1.0"
},
"devDependencies": {
"fs-extra": "^2.0.0",
"jshint": "^2.9.3",
"mocha": "^3.2.0",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.6.0"
}
}