forked from js-data/js-data-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.98 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
{
"name": "js-data-http",
"description": "HTTP adapter for js-data.",
"version": "2.2.2",
"homepage": "https://github.com/js-data/js-data-http",
"repository": {
"type": "git",
"url": "https://github.com/js-data/js-data-http.git"
},
"author": "js-data-http project authors",
"license": "MIT",
"main": "./dist/js-data-http.js",
"keywords": [
"ajax",
"axios",
"rest",
"adapter",
"http"
],
"standard": {
"parser": "babel-eslint"
},
"scripts": {
"lint": "standard src/**/*.js",
"bundle": "webpack --config webpack.config.js --colors",
"min": "uglifyjs dist/js-data-http.js -o dist/js-data-http.min.js --source-map dist/js-data-http.min.map --source-map-url js-data-http.min.map -v -m -c --screw-ie8",
"version": "node scripts/version.js",
"banner": "node scripts/banner.js",
"gzip": "echo gzipped size: $(cat dist/js-data-http.min.js | gzip -f9 | wc -c)kb",
"build": "npm run lint && npm run bundle && npm run min && npm run version && npm run banner",
"karma": "karma start",
"test": "npm run build && npm run karma",
"release": "npm test && node scripts/authors.js",
"ci": "npm test && cat ./coverage/PhantomJS*/lcov.info | coveralls || true"
},
"devDependencies": {
"axios": "0.9.1",
"babel-core": "6.7.2",
"babel-eslint": "5.0.0",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"chai": "3.5.0",
"coveralls": "2.11.8",
"es6-promise": "3.1.2",
"karma": "0.13.22",
"karma-browserstack-launcher": "0.1.10",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.2.2",
"karma-coverage": "0.5.5",
"karma-firefox-launcher": "0.1.7",
"karma-mocha": "0.2.2",
"karma-phantomjs-launcher": "1.0.0",
"karma-sinon": "1.0.4",
"mocha": "2.4.5",
"mout": "0.12.0",
"phantomjs-prebuilt": "2.1.6",
"sinon": "1.17.3",
"standard": "6.0.8",
"uglify-js": "2.6.2",
"webpack": "1.12.14"
},
"dependencies": {
"js-data": ">=2.0.0 <3"
}
}