-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
61
62
63
64
65
66
67
{
"name": "webpack-war-plugin",
"version": "1.0.0",
"description": "Webpack plugin for bundling build outputs into a WAR archive",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/DevWurm/webpack-war-plugin",
"author": "DevWurm",
"license": "MIT",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc -d",
"clean": "rimraf dist",
"test": "mocha --compilers ts:ts-node/register src/**/*.spec.ts",
"test:coverage": "nyc npm run test",
"test:functional:setup": "cd functional_tests && npm install && npm run setup",
"test:functional": "cd functional_tests && npm run test",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"archiver": "^1.3.0",
"colors": "^1.1.2",
"filesize": "^3.5.6",
"typescript": "^2.2.2"
},
"devDependencies": {
"@types/archiver": "^0.15.37",
"@types/chai": "^3.5.0",
"@types/colors": "^1.1.2",
"@types/filesize": "^3.2.15",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/sinon": "^2.1.2",
"@types/webpack": "^2.2.14",
"chai": "^3.5.0",
"coveralls": "^2.13.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"ts-node": "^3.0.2"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
},
"peerDependencies": {
"webpack": ">2.0.0"
}
}