-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
83 lines (83 loc) · 2.17 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "generator-ng-component",
"version": "1.0.4",
"description": "Yeoman generator",
"license": "MIT",
"repository": "DaftMonk/generator-ng-component",
"author": {
"name": "Tyler Henkel",
"email": "",
"url": "https://github.com/DaftMonk"
},
"contributors": [
"Andrew Koroluk <[email protected]> (http://andrewk.me/)",
"Cody Mize <[email protected]> (http://codymize.com/)"
],
"engines": {
"node": ">=4.4.7",
"npm": ">=2.15.8"
},
"scripts": {
"prepublish": "gulp build",
"test": "xo && gulp build && mocha",
"xo": "xo"
},
"keywords": [
"yeoman-generator"
],
"dependencies": {
"bluebird": "^3.4.1",
"chalk": "~1.1.3",
"lodash": "^4.13.1",
"semver": "^5.2.0",
"underscore.string": "^3.2.2",
"yeoman-generator": "~0.23.3"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.9.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"del": "^2.2.1",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-test": "^0.12.7",
"grunt-release": "^0.14.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-if": "^2.0.1",
"gulp-plumber": "^1.1.0",
"lazypipe": "^1.0.1",
"merge-stream": "^1.0.0",
"mocha": "^2.5.3",
"run-sequence": "^1.2.1",
"xo": "^0.16.0",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.4.0"
},
"xo": {
"esnext": true,
"space": true,
"envs": ["node", "mocha"],
"ignores": ["templates/**/*", "generators/**/*", "test/**/*", "Gruntfile.js"],
"rules": {
"space-before-function-paren": ["error", "never"],
"prefer-arrow-callback": 0,
"keyword-spacing": ["error", { "overrides": {
"catch": { "after": false },
"if": { "after": false },
"for": { "after": false },
"while": { "after": false }
} }],
"no-var": 0,
"prefer-const": 0,
"babel/object-curly-spacing": 0,
"max-lines": ["error", 400],
"no-nested-ternary": 0,
"space-infix-ops": 0,
"no-negated-condition": 0
}
}
}