-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.07 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
49
{
"name": "hyperviews",
"version": "0.0.12",
"description": "View template language based targeting hyperscript",
"main": "index.js",
"bin": {
"hyperviews": "./bin/cmd.js"
},
"scripts": {
"test": "standard && node test",
"lint": "standard --plugin html '**/*.html' '**/*.js'",
"build": "bin/build",
"build:playground": "bin/build-playground"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidjamesstone/hyperviews.git"
},
"keywords": [
"hyperapp",
"hyperscript",
"superviews.js",
"template",
"DSL",
"picodom"
],
"author": "davidjamesstone",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidjamesstone/hyperviews/issues"
},
"homepage": "https://github.com/davidjamesstone/hyperviews#readme",
"dependencies": {
"htmlparser2": "^3.10.0",
"minimist": "^1.2.0",
"standard": "^12.0.1"
},
"devDependencies": {
"eslint-plugin-html": "^5.0.0"
},
"standard": {
"plugins": [
"html"
],
"ignore": [
"examples/hyperapp/**/*.js"
]
}
}