-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "json-post-process-webpack-plugin",
"version": "2.0.4",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "standard",
"test:unit": "mocha recursive --reporter spec ./lib",
"test:watch": "npm run test:unit -- --watch"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/cskeppstedt/json-post-process-webpack-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cskeppstedt/json-post-process-webpack-plugin.git"
},
"engines": {
"node": ">=4.3.2"
},
"keywords": [],
"author": "Christoffer Skeppstedt <[email protected]> (https://github.com/cskeppstedt/)",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"fs-extra": "^8.1.0",
"mocha": "^6.2.0",
"standard": "^14.1.0",
"webpack": "^5.50.0",
"webpack-assets-manifest": "^3.1.1"
},
"standard": {
"globals": [
"describe",
"it",
"beforeEach",
"afterEach"
]
}
}