-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
79 lines (79 loc) · 2.27 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
{
"name": "can-connect",
"version": "4.0.6",
"description": "Data connection middleware and utilities",
"main": "can-connect.js",
"dependencies": {
"can-ajax": "^2.0.1",
"can-assign": "^1.3.3",
"can-construct": "^3.5.5",
"can-define": "^2.7.13",
"can-define-connected-singleton": "^0.2.0",
"can-diff": "<2.0.0",
"can-event-queue": "<2.0.0",
"can-globals": "^1.0.1",
"can-key": "<2.0.0",
"can-local-store": "<2.0.0",
"can-log": "^1.0.0",
"can-make-rest": "<2.0.0",
"can-memory-store": "<2.0.0",
"can-namespace": "1.0.0",
"can-observation-recorder": "<2.0.0",
"can-query-logic": "^1.0.0",
"can-queues": "<2.0.0",
"can-reflect": "^1.17.10",
"can-symbol": "^1.6.1",
"can-validate-interface": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/canjs/can-connect.git"
},
"devDependencies": {
"can-dom-events": "^1.1.0",
"can-fixture": "^3.1.7",
"can-list": "^4.0.0",
"can-map": "^4.0.0",
"can-observable-array": "^1.0.0",
"can-observable-object": "^1.0.0",
"can-observation": "^4.0.0",
"can-observe": "^2.1.3",
"can-set-legacy": "<2.0.0",
"can-simple-observable": "^2.0.0",
"can-test-helpers": "^1.1.2",
"can-type": "<2.0.0",
"http-server": "^0.11.0",
"jquery": "2.x - 3.x",
"jshint": "^2.9.4",
"steal": "^2.2.1",
"steal-css": "^1.0.0",
"steal-qunit": "^2.0.0",
"steal-tools": "^1.0.0",
"test-saucelabs": "^0.0.6",
"testee": "^0.10.2"
},
"steal": {
"plugins": [
"steal-stache",
"steal-css"
]
},
"scripts": {
"ci": "npm run test && node test/test-saucelabs.js",
"http-server": "http-server -p 3000 --silent",
"jshint": "jshint --config .jshintrc --exclude ./node_modules,./dist .",
"test": "npm run jshint && testee --browsers firefox test/test.html",
"preversion": "npm test",
"postpublish": "git push --tags && git push",
"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"
},
"keywords": [
"CanJS"
],
"author": "Bitovi",
"license": "MIT"
}