forked from js-data/js-data-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.2 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
73
74
75
76
{
"name": "js-data-http",
"description": "HTTP adapter for js-data.",
"version": "2.1.2",
"homepage": "http://www.js-data.io/docs/dshttpadapter",
"repository": {
"type": "git",
"url": "https://github.com/js-data/js-data-http.git"
},
"author": {
"name": "Jason Dobry",
"url": "http://www.pseudobry.com",
"email": "[email protected]"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/js-data/js-data-http/blob/master/LICENSE"
}
],
"main": "./dist/js-data-http.js",
"keywords": [
"ajax",
"axios",
"rest",
"adapter",
"http"
],
"devDependencies": {
"babel-core": "5.8.25",
"babel-eslint": "4.1.3",
"babel-loader": "5.3.2",
"chai": "3.4.0",
"codacy-coverage": "1.1.3",
"coveralls": "2.11.4",
"es6-promise": "3.0.2",
"karma": "0.13.19",
"karma-browserstack-launcher": "0.1.6",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.2.1",
"karma-coverage": "0.5.3",
"karma-firefox-launcher": "0.1.6",
"karma-junit-reporter": "0.3.8",
"karma-mocha": "0.2.0",
"karma-phantomjs-launcher": "0.2.1",
"karma-sinon": "1.0.4",
"mocha": "2.3.3",
"phantomjs": "1.9.18",
"sinon": "1.17.2",
"standard": "5.3.1",
"uglify-js": "2.5.0",
"webpack": "1.12.2"
},
"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 -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 && npm run gzip",
"karma": "karma start",
"test": "npm run build && npm run karma",
"ci": "npm test && cat ./coverage/PhantomJS*/lcov.info | coveralls || true && cat ./coverage/PhantomJS*/lcov.info | codacy-coverage || true"
},
"dependencies": {
"axios": "0.5.4",
"mout": "0.11.0"
},
"peerDependencies": {
"js-data": ">=2.0.0"
}
}