-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
42 lines (42 loc) · 1.48 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
{
"name": "backbone.nativeajax",
"version": "0.4.4",
"author": "Adam Krebs <amk528@cs.nyu.edu>",
"description": "A Backbone.Ajax function powered by native XHR methods",
"license": "MIT",
"main": "backbone.nativeajax.js",
"repository": {
"type": "git",
"url": "https://github.com/akre54/backbone.nativeajax"
},
"engines": {
"node": "*",
"npm": "*"
},
"scripts": {
"test": "karma start",
"release": "npm run release-patch",
"release-patch": "git checkout master && npm version patch -m 'Backbone.NativeAjax %s' && git push origin master --tags && npm publish",
"release-minor": "git checkout master && npm version minor -m 'Backbone.NativeAjax %s' && git push origin master --tags && npm publish",
"release-major": "git checkout master && npm version major -m 'Backbone.NativeAjax %s' && git push origin master --tags && npm publish"
},
"devDependencies": {
"chai": "^3.0.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "0.1.2",
"karma-firefox-launcher": "^0.1.6",
"karma-junit-reporter": "^0.4.0",
"karma-mocha": "^0.2.2",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.5.1",
"mocha": "^2.2.5",
"mocha-loader": "^0.7.1",
"mock-xhr": "^0.1.0",
"native-promise-only": "^0.8.1",
"sinon": "git://github.com/cjohansen/Sinon.JS#b672042043517b9f84e14ed0fb8265126168778a",
"sinon-chai": "^2.8.0",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.9.0"
}
}