-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.7 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.7 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
{
"name": "webpack-generic-patch-plugin",
"version": "1.0.0",
"description": "Webpack plugin for generic patching",
"keywords": [
"webpack",
"patch",
"generic patch",
"module replacement"
],
"main": "source/index.js",
"license": "MIT",
"author": {
"name": "Deniz Temizer (@dtmzr)",
"email": "deniz.temizer.1@gmail.com",
"url": "https://dtmzr.com/"
},
"bugs": {
"url": "https://github.com/Format-D/webpack-generic-patch-plugin/issues"
},
"homepage": "https://github.com/Format-D/webpack-generic-patch-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Format-D/webpack-generic-patch-plugin.git"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint:example": "eslint example/",
"lint:source": "eslint source/",
"lint:test": "eslint test/",
"lint": "npm run lint:test && npm run lint:source && npm run lint:example",
"example:build": "webpack --config example/webpack.config.js",
"example:first": "node example/dist/first.js",
"example:second": "node example/dist/second.js",
"example:run": "npm run example:first && npm run example:second",
"example": "npm run example:build && npm run example:run"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test",
"pre-push": "npm run lint && npm run test"
}
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.8",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
}
}