forked from dominictarr/h
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "@rewired/h",
"description": "Generate HTML from javascript array structures",
"version": "1.1.0",
"homepage": "https://github.com/politics-rewired/h",
"repository": {
"type": "git",
"url": "git://github.com/politics-rewired/h.git"
},
"author": "'Dominic Tarr' @EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519",
"license": "MIT",
"contributors": [
{
"name": "Benjamin Chrobot",
"email": "[email protected]",
"url": "https://benjaminchrobot.com"
}
],
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "tape test/*.js",
"release": "standard-version",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"prepare": "husky install"
},
"dependencies": {
"cssesc": "^3.0.0",
"html-escape": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"commitizen": "^4.2.4",
"hyperscript": "^2.0.2",
"standard-version": "^9.3.2",
"tape": "^4.11.0",
"husky": "^7.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}