-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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": "node-maven-api",
"main": "./lib/index",
"version": "2.0.2",
"description": "Run maven commands via a node js api!",
"keywords": [
"apache",
"maven",
"node"
],
"repository": "https://github.com/concon121/node-maven-api",
"license": "MIT",
"dependencies": {
"xml2js": "^0.4.17"
},
"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",
"jshint": "^2.9.4"
},
"scripts": {
"test": "node ./node_modules/jasmine/bin/jasmine spec/*-spec.js",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover -v --include-all-sources node_modules/jasmine/bin/jasmine.js -R spec/*-spec.js",
"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": [
"it",
"spyOn",
"describe",
"expect",
"beforeEach"
]
}
}