This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.02 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@kingsquare/kmt-cachebuster-webpack-plugin",
"version": "0.0.0-alpha6",
"description": "KMT Webpack plugin for cachebusting webpack resources according to the KMT specification",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Kingsquare BV <source@kingsquare.nl>",
"license": "MIT",
"files": [
"lib",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/kingsquare/kmt-cachebuster-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/kingsquare/kmt-cachebuster-webpack-plugin/issues"
},
"scripts": {
"prepare" : "yarn run build",
"prepublishOnly": "yarn run lint",
"build": "tsc",
"test": "ava",
"test:coverage": "NODE_ENV=test nyc ava",
"lint": "eslint ./src/**/*.ts",
"clean": "rm -rf node_modules"
},
"engines": {
"node": ">=8"
},
"peerDependencies": {
"webpack": "2 || 3 || 4"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@ava/babel-preset-stage-4": "^4.0.0",
"@babel/core": "^7.9.0",
"@babel/register": "^7.9.0",
"@types/node": "^13.9.5",
"@types/tapable": "^1.0.5",
"@types/webpack": "^4.41.9",
"ava": "^3.7.0",
"babel-plugin-istanbul": "^6.0.0",
"eslint": "^6.8.0",
"eslint-config-kingsquare": "^6.0.2",
"nyc": "^15.0.1",
"prettier": "^1.19.1",
"release": "^6.1.0",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack3": "^3.11.1"
},
"eslintConfig": {
"extends": "kingsquare",
"rules": {
"no-redeclare": "off"
}
},
"eslintIgnore": [
"/lib/**/*",
"/.nyc_output/**/*",
"/coverage/**/*"
],
"prettier": {
"printWidth": 120
},
"babel": {
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
}
}