-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
33 lines (33 loc) · 897 Bytes
/
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
{
"name": "systemjs-webpack-interop",
"version": "2.3.7",
"description": "helpers for getting webpack bundles to be loaded by systemjs",
"main": "public-path.js",
"types": "public-path.d.ts",
"repository": "https://github.com/joeldenning/systemjs-webpack-interop.git",
"bugs": {
"url": "https://github.com/joeldenning/systemjs-webpack-interop/issues"
},
"homepage": "https://github.com/joeldenning/systemjs-webpack-interop#readme",
"author": "Joel Denning <joeldenning@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pnpm test && pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "^25.1.4",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"peerDependencies": {
"webpack": "*"
}
}