-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "parcel-plugin-stringify-anything",
"version": "1.2.0",
"description": "Parcel plugin for importing any file types as string",
"main": "./src/index.js",
"scripts": {
"prettier": "prettier '@(src|demo)/**/*.@(js|html|json)' --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeetCode-OpenSource/parcel-plugin-stringify-anything.git"
},
"keywords": [
"parcel",
"parcel-bundler",
"parcel-plugin",
"stringify",
"string"
],
"bugs": {
"url": "https://github.com/LeetCode-OpenSource/parcel-plugin-stringify-anything/issues"
},
"homepage": "https://github.com/LeetCode-OpenSource/parcel-plugin-stringify-anything#readme",
"author": "LeetCode front-end team",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js|html|json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"husky": "^4.0.0",
"lint-staged": "^10.0.1",
"parcel-bundler": "^1.10.3",
"prettier": "2.2.1"
},
"peerDependencies": {
"parcel-bundler": "^1.10.3"
}
}