-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "can-ajax",
"version": "2.4.8",
"description": "jQuery-inspired AJAX request library.",
"homepage": "https://canjs.com/doc/can-ajax.html",
"repository": {
"type": "git",
"url": "git://github.com/canjs/can-ajax.git"
},
"author": {
"name": "Bitovi",
"email": "[email protected]",
"url": "https://www.bitovi.com/"
},
"license": "MIT",
"scripts": {
"ci": "npm run test && node test/test-saucelabs.js",
"http-server": "http-server -p 3000 --silent",
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update version number\" && git checkout -b release && git add -f dist/",
"postpublish": "git push --tags && git checkout - && 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: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-ajax",
"keywords": [
"canjs",
"ajax",
"jquery",
"http",
"request"
],
"steal": {
"main": "can-ajax",
"npmIgnore": [
"testee",
"steal-tools"
]
},
"dependencies": {
"can-globals": "<2.0.0",
"can-namespace": "^1.0.0",
"can-param": "^1.0.1",
"can-parse-uri": "^1.0.0",
"can-reflect": "^1.16.3"
},
"devDependencies": {
"can-make-map": "^1.0.0",
"detect-cyclic-packages": "^1.1.0",
"http-server": "^0.11.1",
"jshint": "^2.9.1",
"steal": "^2.3.0",
"steal-qunit": "^2.0.0",
"steal-tools": "^1.11.9",
"test-saucelabs": "0.0.6",
"testee": "^0.9.0"
}
}