-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.76 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
{
"name": "can-jquery",
"version": "3.2.5",
"description": "CanJS integrations for jQuery",
"homepage": "https://canjs.com",
"author": {
"name": "Bitovi",
"email": "contact@bitovi.com",
"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",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"main": "can-jquery.js",
"keywords": [
"canjs"
],
"dependencies": {
"can-dom-events": "^1.0.4",
"can-event": "^3.7.5",
"can-event-dom-enter": "^1.0.2",
"can-globals": "<2.0.0",
"can-util": "^3.10.12",
"can-view-model": "^3.4.0",
"jquery": "2.x - 3.x"
},
"devDependencies": {
"can-component": "^3.3.4",
"can-control": "^3.2.0",
"can-define": "^1.5.0",
"can-list": "^3.2.1",
"can-map": "^3.4.0",
"can-stache": "^3.8.0",
"can-stache-bindings": "^3.4.0",
"can-test-helpers": "^1.0.1",
"can-vdom": "^3.2.1",
"detect-cyclic-packages": "^1.1.0",
"jshint": "^2.9.1",
"qunitjs": "^2.4.0",
"steal": "^1.5.15",
"steal-qunit": "^1.0.1",
"steal-tools": "^1.9.0",
"testee": "^0.9.0"
}
}