-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "maven-deploy",
"version": "1.5.0",
"description": "A simple Node.js module to create a war-/jar-package and install/deploy to a local/remote Maven repository",
"main": "index.js",
"scripts": {
"test": "mocha && npm run lint",
"lint": "finn-js-code-style *.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -u bdd -R spec",
"coverage-travis": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"keywords": [
"maven",
"deploy"
],
"homepage": "https://github.com/finn-no/maven-deploy",
"bugs": "https://github.com/finn-no/maven-deploy/issues",
"repository": {
"type": "git",
"url": "[email protected]:finn-no/maven-deploy.git"
},
"author": "FINN.no AS",
"contributors": [
"Gregers Rygg <[email protected]>"
],
"license": "MIT",
"dependencies": {
"define-options": "^0.1.3",
"fs-walk": "0.0.1",
"isbinaryfile": "^3.0.0",
"jszip": "^2.5.0",
"semver": "^5.1.0",
"util-extend": "^1.0.3"
},
"devDependencies": {
"buffer-equal": "^1.0.0",
"coveralls": "^2.11.8",
"finn-js-code-style": "^5.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"mock-fs": "^3.8.0",
"proxyquire": "^1.7.4",
"sinon": "^1.17.3"
}
}