forked from donejs/done-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "done-component",
"version": "0.6.0-pre.1",
"description": "A StealJS plugin for creating <can-component>s",
"main": "component.js",
"scripts": {
"test:browser": "grunt test",
"test:ssr": "grunt copy && mocha test/test_ssr.js",
"test:live-reload": "live-reload-test & testee test/test-live-reload.html --browsers firefox --reporter Spec",
"test": "npm run test:browser && npm run test:ssr",
"publish": "git push origin master --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/donejs/done-component.git"
},
"keywords": [
"StealJS",
"CanJS",
"DoneJS"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/donejs/done-component/issues"
},
"homepage": "https://github.com/donejs/done-component",
"devDependencies": {
"can-map": "^3.0.0-pre.5",
"can-map-define": "^3.0.0-pre.2",
"can-ssr": "^0.9.1",
"can-stache": "^3.0.0-pre.5",
"done-autorender": "^0.3.1",
"done-css": "^1.1.12",
"funcunit": "^3.0.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-copy": "^0.8.1",
"live-reload-testing": "^3.0.1",
"mocha": "^2.3.0",
"steal": "^0.16.0",
"steal-qunit": "^0.1.0",
"steal-stache": "^3.0.0-pre.1",
"testee": "^0.2.0"
},
"system": {
"npmAlgorithm": "flat",
"ext": {
"component": "done-component"
}
},
"peerdependencies": {
"can-component": "*",
"can-stache": "*",
"can-view-parser": "*",
"jquery": "*"
}
}