forked from canjs/can-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.19 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "can-component",
"version": "3.3.6",
"description": "Custom elements for CanJS",
"homepage": "http://canjs.com",
"repository": {
"type": "git",
"url": "git://github.com/canjs/can-component.git"
},
"author": {
"name": "Bitovi",
"email": "[email protected]",
"url": "http://bitovi.com"
},
"scripts": {
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postversion": "git push --tags && git checkout master && git branch -D release && git push",
"testee": "testee test/test.html --browsers firefox",
"test": "npm run detect-cycle && npm run jshint && npm run testee",
"jshint": "jshint ./*.js --config",
"release:pre": "npm version prerelease && npm publish --tag=pre",
"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",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"main": "can-component",
"keywords": [
"canjs",
"canjs-plugin",
"donejs"
],
"system": {
"configDependencies": [
"live-reload"
]
},
"dependencies": {
"can-compute": "^3.3.1",
"can-construct": "^3.2.0",
"can-control": "^3.2.0",
"can-globals": "^0.2.3",
"can-namespace": "1.0.0",
"can-observation": "^3.3.1",
"can-reflect": "^1.2.1",
"can-simple-map": "^3.3.0",
"can-stache-bindings": "^3.4.0",
"can-stache-key": "0.1.0",
"can-types": "^1.1.0",
"can-util": "^3.9.5",
"can-view-callbacks": "^3.2.0",
"can-view-model": "^3.4.0",
"can-view-nodelist": "^3.1.0",
"can-view-scope": "^3.3.1"
},
"devDependencies": {
"can-define": "^1.3.0",
"can-event": "^3.5.0",
"can-list": "^3.2.0",
"can-map": "^3.3.1",
"can-stache": "^3.3.0",
"can-vdom": "^3.1.0",
"detect-cyclic-packages": "^1.1.0",
"done-serve": "^1.3.0",
"jshint": "^2.9.1",
"steal": "^1.0.0",
"steal-qunit": "^1.0.0",
"steal-tools": "^1.0.1",
"testee": "^0.7.0"
}
}