-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
47 lines (47 loc) · 1.69 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": "superviews.js",
"version": "3.0.4",
"description": "Template engine compiler targeting incremental-dom by Google",
"main": "index.js",
"browser": "client/index.js",
"bin": {
"superviews": "./bin/cmd.js"
},
"scripts": {
"lint": "standard index.js bin/cmd.js",
"build:playground": "browserify -d examples/playground/playground.js > examples/playground/playground.bundle.js",
"build:customelements": "browserify examples/client/x-todos/index.js -t [superviewify --args 'el state'] -d -o examples/client/x-todos/bundle.js",
"build:examples": "browserify examples/client/x-widget/index.js -t [superviewify --args 'el state ctrl'] -d -o examples/client/x-widget/bundle.js",
"build:glue": "browserify examples/client/x-glue/index.js -t [superviewify --args 'el state ctrl'] -d -o examples/client/x-glue/bundle.js",
"build:readme": "cat test/readme.html | ./bin/cmd.js > test/readme.js"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/davidjamesstone/superviews.js.git"
},
"author": "djs",
"license": "ISC",
"dependencies": {
"document-register-element": "1.5.0",
"dom-delegate": "2.0.3",
"freezer-js": "0.11.2",
"htmlparser2": "3.9.2",
"incremental-dom": "0.5.1",
"indent-string": "3.0.0",
"is-my-json-valid": "2.15.0",
"jpi-models": "0.0.1",
"minimist": "1.2.0",
"uuid": "2.0.3"
},
"devDependencies": {
"brace": "0.9.0",
"browserify": "13.1.1",
"standard": "8.5.0",
"supermodels.js": "0.2.1",
"superviewify": "3.0.0"
},
"bugs": {
"url": "/~https://github.com/davidjamesstone/superviews.js/issues"
},
"homepage": "/~https://github.com/davidjamesstone/superviews.js#readme"
}