-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
{
"name": "tapable-ts",
"version": "0.2.4",
"description": "A TS implementation of tapable",
"main": "./dist/hooks.js",
"module": "./dist/hooks.mjs",
"types": "./dist/hooks.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest",
"release": "auto shipit -vv",
"labelCheck": "auto pr-check",
"lint": "eslint src --cache",
"prepare": "is-ci || husky install"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/adierkens/tapable-ts"
},
"keywords": [
"webpack",
"plugin",
"loader",
"inject"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Adam Dierkens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adierkens/tapable-ts/issues"
},
"homepage": "https://github.com/adierkens/tapable-ts#readme",
"sideEffects": false,
"devDependencies": {
"@design-systems/eslint-config": "^2.17.8",
"@types/jest": "^27.5.0",
"auto": "10.31.0",
"esbuild": "^0.14.38",
"husky": "^7.0.0",
"is-ci": "^3.0.0",
"jest": "^28.1.0",
"jest-junit": "^15.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"rollup": "^2.72.1",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-esbuild": "^4.9.1",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"prettier": {},
"volta": {
"node": "16.15.0",
"yarn": "1.22.18"
}
}