-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "generator-donejs",
"version": "3.4.3",
"description": "A generator for your DoneJS application",
"homepage": "http://donejs.com/",
"license": "MIT",
"main": "lib",
"scripts": {
"coverage": "istanbul cover _mocha -- test/ --timeout 600000",
"test": "mocha test/ --timeout 600000",
"coverage:upload": "istanbul cover _mocha --report lcovonly -- test/ --timeout 600000 && cat ./coverage/lcov.info | ./node_modules/coveralls-send/bin/coveralls.js",
"publish": "git push origin --tags && git push origin",
"release:pre": "npm version prerelease && npm publish --tag=pre",
"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": "git@github.com:donejs/generator-donejs.git",
"github": "https://github.com/donejs/generator-donejs"
},
"author": {
"name": "Bitovi",
"email": "contact@bitovi.com",
"web": "http://bitovi.com/"
},
"files": [
"lib",
"app",
"component",
"supermodel",
"module",
"plugin",
"generator"
],
"keywords": [
"yeoman-generator"
],
"dependencies": {
"generator-license": "^5.1.0",
"git-config": "0.0.7",
"is-valid-element-name": "^1.0.0",
"lodash": "^4.17.5",
"lodash-inflection": "^1.3.2",
"lodash.upperfirst": "^4.1.2",
"q": "^1.4.1",
"semver": "^5.1.0",
"validate-npm-package-name": "^2.2.2",
"whatwg-url": "^4.3.0",
"yeoman-generator": "^3.1.1"
},
"devDependencies": {
"coveralls-send": "0.0.2",
"donejs": "*",
"donejs-cli": "^3.2.0",
"fs-extra": "^0.30.0",
"istanbul": "^0.4.2",
"mkdirp": "^0.5.1",
"mocha": "^2.3.0",
"mocha-lcov-reporter": "^1.2.0",
"user-home": "^2.0.0",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.6.0"
}
}