-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.74 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.74 KB
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
{
"name": "appcache-webpack-plugin-plus",
"version": "2.0.3",
"contributors": [
"Eric Eldredge <lettertwo@gmail.com>",
"Ian Copp <ian@wolflair.com>"
],
"description": "Generate an application cache for a Webpack build",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": ["lib/", "src/index.ts"],
"scripts": {
"build": "tsc -p .",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"test": "mocha -r ts-node/register test/**/*.ts"
},
"engines": {
"node": ">=8.5.0"
},
"lint-staged": {
"*.js": ["prettier --write", "git add"],
"*.json": ["prettier --parser json --write", "git add"]
},
"repository": {
"type": "git",
"url": "http://github.com/lwd-technology/appcache-webpack-plugin-plus.git"
},
"keywords": ["webpack", "appcache", "application", "cache", "plugin"],
"license": "MIT",
"bugs": {
"url":
"https://github.com/lwd-technology/appcache-webpack-plugin-plus/issues"
},
"homepage": "https://github.com/lwd-technology/appcache-webpack-plugin-plus",
"devDependencies": {
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.28",
"@types/webpack": "^3.0.10",
"eslint": "^4.7.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-babel": "^2.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.1",
"mocha": "^3.5.3",
"power-assert": "^1.0.0",
"prettier": "^1.7.0",
"ts-node": "^3.3.0",
"typescript": "^2.5.2",
"typescript-eslint-parser": "^8.0.0",
"webpack": ">=0.11 <2.0.0 || >=2.1.0-beta.13 <3.0.0 || ^3.2.0"
}
}