-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "atom-maven",
"main": "./lib/atom-maven",
"version": "1.3.2",
"description": "Maven integration for atom!",
"keywords": [
"apache",
"maven",
"java"
],
"repository": "https://github.com/concon121/atom-maven",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-message-panel": "^1.2.4",
"jquery": "^3.0.0",
"node-maven-api": "^2.0.2",
"node-watch": "^0.5.2",
"xml2js": "^0.4.16"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.9.0",
"codeclimate-test-reporter": "^0.4.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^1.0.0-alpha.2",
"jasmine": "^2.5.2",
"jasmine-focused": "^1.0.7",
"jshint": "^2.9.4"
},
"scripts": {
"test": "node ./node_modules/jasmine-focused/bin/jasmine-focused spec",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover -v --include-all-sources -x **/atom/** node_modules/jasmine-focused/bin/jasmine-focused -R spec",
"jshint": "node ./node_modules/jshint/bin/jshint lib/*.js",
"es": "node ./node_modules/eslint/bin/eslint lib/*.js",
"quality": "npm run jshint && npm run es"
},
"standard": {
"globals": [
"atom",
"beforeEach",
"describe",
"expect",
"it",
"module",
"require",
"spyOn"
]
}
}