-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "generator-nody",
"description": "A node generator for Yeoman, with mocha, gulp, istanbul, jshint and jasmine supported ",
"version": "0.3.0",
"homepage": "https://github.com/qiu8310/generator-nody",
"bugs": "https://github.com/qiu8310/generator-nody/issues",
"license": "MIT",
"main": "app/index.js",
"author": {
"name": "Zhonglei Qiu",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/qiu8310/generator-nody"
},
"keywords": [
"yeoman-generator",
"scaffold",
"node",
"gulp"
],
"scripts": {
"lint": "./node_modules/.bin/jshint app/*.js --reporter=./node_modules/jshint-stylish/stylish.js",
"coverage-upload": "CODECLIMATE_REPO_TOKEN=5dcdbb440b3bb1f81a3eceb89bf8f8aeb29c39fb0de9d21b54f56fc5fee34e5f ./node_modules/.bin/codeclimate < coverage/lcov.info",
"pretest": "npm run lint",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive -R spec",
"posttest": "./node_modules/.bin/istanbul check-coverage"
},
"engines": {
"node": ">= 0.10.0",
"npm": ">=1.2.10"
},
"dependencies": {
"yeoman-generator": "^0.18.10",
"yo": ">=1.0.3",
"yo-helper": "^0.1.3"
},
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"istanbul": "^0.3.13",
"jshint": "^2.6.3",
"jshint-stylish": "^1.0.1",
"mocha": "^2.2.1",
"nock": "^1.4.0",
"registry-url": "^3.0.2",
"rimraf": "^2.3.2"
}
}