-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "hyperaxe",
"description": "Enchanted hyperscript weapon.",
"version": "2.0.1",
"author": "Nate Goldman <ungoldman@gmail.com> (https://ungoldman.com/)",
"bugs": {
"url": "https://github.com/ungoldman/hyperaxe/issues"
},
"dependencies": {
"html-tags": "^3.0.0",
"hyperscript": "^2.0.2"
},
"devDependencies": {
"standard": "^17.0.0",
"standard-version": "^9.3.2",
"tap-arc": "^1.0.2",
"tape": "^5.5.2"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/ungoldman/hyperaxe#readme",
"keywords": [
"dom",
"factory",
"html",
"hyperscript",
"sugar"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ungoldman/hyperaxe.git"
},
"scripts": {
"example": "npx budo --open example.js",
"postrelease": "git push --tags && npm publish",
"prerelease": "git fetch --tags && npm test",
"release": "standard-version",
"test": "standard && tape test.js | tap-arc"
}
}