-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
71 lines (71 loc) · 1.59 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
{
"name": "webpack-notifier",
"version": "1.15.0",
"description": "webpack + node-notifier = build status system notifications",
"main": "index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts",
"logo.png"
],
"scripts": {
"prepublishOnly": "npm run lint",
"lint": "eslint index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"tsd": "tsd"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"keywords": [
"webpack",
"notify",
"notification",
"node-notifier",
"notifier",
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/Turbo87/webpack-notifier.git"
},
"author": "Tobias Bieniek <[email protected]>",
"license": "ISC",
"dependencies": {
"node-notifier": "^9.0.0",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node-notifier": "^8.0.1",
"@types/semver": "^7.3.8",
"@types/webpack": ">4.41.31",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"husky": "^4.3.0",
"jest": "^24.9.0",
"memfs": "^3.2.0",
"semver": "^7.3.2",
"ts-jest": "^24.3.0",
"tsd": "^0.17.0",
"typescript": "^3.9.7",
"webpack-1": "npm:webpack@1",
"webpack-2": "npm:webpack@2",
"webpack-3": "npm:webpack@3",
"webpack-4": "npm:webpack@4",
"webpack-5": "npm:webpack@5",
"webpack-latest": "npm:webpack@latest"
},
"peerDependencies": {
"@types/webpack": ">4.41.31"
},
"peerDependenciesMeta": {
"@types/webpack": {
"optional": true
}
}
}