-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "can-hyperscript",
"version": "0.2.3",
"description": "Create HyperText with JavaScript and CanJS live binding.",
"homepage": "",
"repository": {
"type": "git",
"url": "git://github.com/phillipskevin/can-hyperscript.git"
},
"author": {
"name": "Kevin Phillips",
"email": "[email protected]",
"url": ""
},
"scripts": {
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postpublish": "git push --tags && git checkout master && git branch -D release && git push",
"testee": "testee test/test.html --browsers firefox",
"test": "npm run jshint && npm run testee",
"jshint": "jshint lib test --config",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"build": "node build.js",
"develop": "done-serve --static --develop --port 8080"
},
"main": "dist/cjs/lib/can-hyperscript",
"keywords": [],
"steal": {
"npmIgnore": [
"testee",
"steal-tools"
],
"plugins": [
"steal-css"
]
},
"dependencies": {
"can-compute": "^3.0.5",
"can-observation": "^3.0.1",
"can-types": "^1.0.2",
"can-util": "^3.2.2",
"can-view-callbacks": "^3.0.4",
"can-view-live": "^3.0.5",
"can-view-model": "^3.1.3",
"can-view-scope": "^3.1.2",
"can-view-target": "^3.0.7",
"hyperscript": "^2.0.2"
},
"devDependencies": {
"can-component": "^3.0.5",
"can-define": "^1.0.16",
"can-simple-map": "^3.1.2",
"done-serve": "^1.0.0-alpha.0",
"jshint": "^2.9.4",
"steal": "^1.0.5",
"steal-css": "^1.2.1",
"steal-qunit": "^1.0.1",
"steal-tools": "^1.0.1",
"testee": "^0.3.0"
}
}