-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2.06 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
{
"name": "superapi",
"version": "0.23.1",
"description": "Super api wrapper around superagent",
"main": "dist/commonjs/main.js",
"scripts": {
"build": "grunt build",
"test": "npm run amd-test && npm run cjs-test",
"amd-test": "./node_modules/.bin/karma start --single-run --browsers PhantomJS",
"cjs-test": "./node_modules/.bin/mocha --opts tests/commonjs/mocha.opts tests/commonjs/specs/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stephanebachelier/superapi"
},
"keywords": [
"http",
"api",
"superagent",
"wrapper"
],
"author": "Stéphane Bachelier <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stephanebachelier/superapi/issues"
},
"homepage": "https://github.com/stephanebachelier/superapi",
"engines": {
"node": ">=0.10"
},
"dependencies": {
"superagent": "^1.6.1"
},
"devDependencies": {
"chai": "^3.4.1",
"express": "^4.13.3",
"glob": "^6.0.3",
"grunt": "~0.4.2",
"grunt-cli": "~0.1.11",
"grunt-contrib-clean": "~0.7.0",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.0",
"grunt-conventional-changelog": "^5.0.0",
"grunt-es6-module-transpiler": "~0.6.0",
"grunt-groc": "^0.6.0",
"grunt-jscs": "^2.5.0",
"grunt-jsonlint": "^1.0.4",
"grunt-karma": "^0.12.1",
"grunt-lintspaces": "^0.7.1",
"grunt-plato": "^1.0.0",
"jshint-stylish": "^2.1.0",
"karma": "^0.13.16",
"karma-chai-sinon": "^0.1.3",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^0.2.2",
"karma-requirejs": "^0.2.1",
"karma-script-launcher": "^0.1.0",
"load-grunt-config": "^0.19.1",
"load-grunt-tasks": "~3.4.0",
"mocha": "^2.3.4",
"phantomjs-polyfill": "0.0.1",
"promise-polyfill": "^2.1.0",
"release-it": "2.3.1",
"requirejs": "^2.1.11",
"sinon": "^1.9.1",
"sinon-chai": "^2.5.0"
}
}