forked from decerto-poland/make-war
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 945 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 945 Bytes
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
{
"name": "@decerto/make-war",
"version": "0.6.0",
"description": "CLI tool to make WAR with static content",
"bin": {
"make-war": "lib/index.js"
},
"scripts": {
"prepublish": "npm run build",
"build": "babel src -d lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decerto-poland/make-war.git"
},
"keywords": [
"war",
"bundle",
"build",
"cli"
],
"author": "Decerto Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/decerto-poland/make-war/issues"
},
"homepage": "https://github.com/decerto-poland/make-war#readme",
"dependencies": {
"archiver": "^2.1.1",
"download": "^6.2.5",
"node-getopt": "^0.2.3",
"util.promisify": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1"
}
}