-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "rollup-plugin-json-parse",
"version": "1.1.5",
"description": "A rollup plugin that wraps compatible objects with JSON.parse() to improve performance.",
"main": "src/rollup-plugin-json-parse.js",
"scripts": {
"prettier": "prettier --write .",
"lint": "prettier --check .",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjenkinson/rollup-plugin-json-parse.git"
},
"keywords": [
"rollup-plugin",
"rollup",
"JSON.parse",
"JSON",
"optimisation",
"performance"
],
"author": "Tom Jenkinson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjenkinson/rollup-plugin-json-parse/issues"
},
"homepage": "https://github.com/tjenkinson/rollup-plugin-json-parse#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"husky": "^4.0.2",
"jest": "^27.0.6",
"prettier": "^3.2.4",
"rollup": "^2.0.0"
},
"dependencies": {
"acorn": "^8.0.1",
"jsesc": "^3.0.1",
"magic-string": "^0.25.4"
}
}