-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.5 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
{
"name": "parcel-reporter-bundle-manifest",
"version": "1.0.0",
"description": "https://github.com/mugi-uno/parcel-plugin-bundle-manifest, but for Parcel 2",
"scripts": {
"build": "parcel build src/BundleManifestReporter.ts",
"test": "jest",
"prepare": "npm run build && husky install",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/autifyhq/parcel-reporter-bundle-manifest.git"
},
"keywords": [
"parcel2",
"plugin",
"reporter",
"manifest"
],
"author": "Kanitkorn S.",
"license": "MIT",
"bugs": {
"url": "https://github.com/autifyhq/parcel-reporter-bundle-manifest/issues"
},
"homepage": "https://github.com/autifyhq/parcel-reporter-bundle-manifest#readme",
"main": "lib/BundleManifestReporter.js",
"source": "src/BundleManifestReporter.ts",
"engines": {
"node": ">= 12.0.0",
"parcel": "^2.0.0"
},
"peerDependencies": {
"parcel": "^2.0.0"
},
"dependencies": {
"@parcel/plugin": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.3",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.3",
"parcel": "^2.0.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"targets": {
"main": {
"context": "node",
"engines": {
"node": ">= 12.0.0"
},
"isLibrary": true
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}