-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1006 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "find-conditional-comments",
"version": "0.0.6",
"description": "Finds all conditional comments in a string",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/useparcel/find-conditional-comments.git"
},
"keywords": [
"conditional",
"comments",
"html",
"email"
],
"author": "Avi Goldman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/useparcel/find-conditional-comments/issues"
},
"homepage": "https://github.com/useparcel/find-conditional-comments#readme",
"devDependencies": {
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1"
},
"lint-staged": {
"*.(js|json)": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"publishConfig": {
"access": "public"
}
}