-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
82 lines (82 loc) · 2.44 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
75
76
77
78
79
80
81
82
{
"name": "can-stache",
"version": "5.1.1",
"description": "Live binding handlebars templates",
"homepage": "https://canjs.com/doc/can-stache.html",
"repository": {
"type": "git",
"url": "git://github.com/canjs/can-stache.git"
},
"author": {
"name": "Bitovi",
"email": "[email protected]",
"url": "http://bitovi.com"
},
"license": "MIT",
"scripts": {
"ci": "npm run test && node test/test-saucelabs.js",
"http-server": "http-server -p 3000 --silent",
"preversion": "npm test",
"postpublish": "git push --tags && git push",
"testee": "testee test/test.html --browsers firefox",
"test": "npm run detect-cycle && npm run jshint && npm run testee",
"jshint": "jshint . --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",
"detect-cycle": "detect-cyclic-packages"
},
"main": "can-stache",
"keywords": [
"canjs",
"canjs-plugin",
"donejs"
],
"dependencies": {
"can-assign": "^1.1.1",
"can-attribute-encoder": "^1.0.0",
"can-child-nodes": "^1.0.0",
"can-define-lazy-value": "^1.0.2",
"can-dom-data": "^1.0.1",
"can-dom-mutate": "^2.0.0",
"can-fragment": "^1.3.0",
"can-globals": "^1.1.1",
"can-import-module": "^1.0.0",
"can-join-uris": "^1.0.0",
"can-log": "^1.0.0",
"can-namespace": "1.0.0",
"can-observation": "^4.2.0",
"can-observation-recorder": "^1.3.0",
"can-reflect": "^1.16.4",
"can-simple-observable": "^2.0.3",
"can-stache-ast": "^1.0.0",
"can-stache-helpers": "^1.0.0",
"can-stache-key": "^1.3.1",
"can-string": "<2.0.0",
"can-symbol": "^1.6.4",
"can-view-callbacks": "^5.0.0",
"can-view-live": "^5.0.0",
"can-view-parser": "^4.0.0",
"can-view-scope": "^4.12.0",
"can-view-target": "^5.0.0"
},
"devDependencies": {
"can-define": "^2.0.4",
"can-queues": "^1.3.0",
"can-simple-dom": "^1.7.0",
"can-simple-map": "^4.0.0",
"can-test-helpers": "^1.1.2",
"can-vdom": "^4.0.0",
"detect-cyclic-packages": "^1.1.0",
"http-server": "^0.11.0",
"jshint": "^2.9.4",
"steal": "^1.5.19",
"steal-benchmark": "^0.0.1",
"steal-qunit": "^2.0.0",
"steal-tools": "^1.0.1",
"test-saucelabs": "^0.0.6",
"testee": "^0.9.1"
}
}