-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1015 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
34
35
36
37
38
{
"name": "donejs-travis",
"version": "1.0.1",
"description": "A Yeoman generator to setup Travis in your DoneJS application",
"homepage": "",
"author": {
"name": "Bitovi",
"email": "contact@bitovi.com",
"url": "http://bitovi.com/"
},
"main": "lib/",
"scripts": {
"test": "npm run jshint && npm run mocha",
"jshint": "jshint . --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",
"donejs-generator"
],
"license": "MIT",
"dependencies": {
"git-remote-origin-url": "^2.0.0",
"js-yaml": "^3.10.0",
"lodash": "^4.17.4",
"yeoman-generator": "^1.1.1"
},
"devDependencies": {
"jshint": "^2.9.5",
"mocha": "^2.5.3",
"yeoman-assert": "^2.2.3",
"yeoman-test": "^1.7.0"
}
}