-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.27 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": "jscs-ember-deprecations",
"version": "2.3.0",
"description": "Ember deprecation warnings for JSCS",
"homepage": "https://github.com/minichate/jscs-ember-deprecations",
"author": "Christopher Troup",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/minichate/jscs-ember-deprecations"
},
"bugs": {
"url": "https://github.com/minichate/jscs-ember-deprecations/issues",
"email": "[email protected]"
},
"main": "lib/index",
"scripts": {
"lint": "jshint lib test && jscs lib test",
"test": "npm run lint && mocha",
"coverage": "istanbul cover _mocha && cat ./coverage/lcov.info",
"coveralls": "npm run coverage | coveralls",
"travis": "npm run test && npm run coveralls"
},
"dependencies": {
"cst": "^0.4.6"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-subset": "^1.2.2",
"coveralls": "^2.11.4",
"fixture-loader": "^1.0.1",
"istanbul": "^0.4.0",
"jscs": "^3.0.4",
"jshint": "^2.7.0",
"merge": "^1.2.0",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0"
},
"keywords": [
"ember",
"jscs"
],
"engines": {
"node": ">= 0.10.0"
},
"contributors": [
"Christopher Troup <[email protected]> (https://minichate.github.io/)"
]
}