-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (80 loc) · 2.34 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
77
78
79
80
81
82
{
"name": "js-data-jsonapi",
"version": "0.0.0-alpha.19",
"description": "JsonApi adapter for js-data.",
"main": "./dist/js-data-jsonapi.js",
"repository": {
"type": "git",
"url": "https://github.com/blairallegrotech/js-data-jsonapi.git"
},
"author": {
"name": "Blair Jacobs",
"url": "http://blog.allegrotech.co.nz/",
"email": "blairj@xtra.co.nz"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/blairallegrotech/js-data-jsonapi/blob/master/LICENSE"
}
],
"keywords": [
"ajax",
"axios",
"rest",
"adapter",
"http",
"js-data",
"js-data-http",
"jsonapi",
"typescript"
],
"scripts": {
"tslint": "tslint -c tslint.json ./src/**/*.ts",
"compile": "tsc",
"bundle": "webpack --config webpack.config.js --colors",
"min": "uglifyjs dist/js-data-jsonapi.js -o dist/js-data-jsonapi.min.js --source-map dist/js-data-jsonapi.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-jsonapi.min.js | gzip -f9 | wc -c)kb",
"linter": "npm run tslint",
"build": "npm run tslint && npm run compile && npm run bundle && npm run min && npm run version && npm run banner",
"karma": "karma start",
"test": "npm run build && npm run karma",
"ci": "npm test && cat ./coverage/PhantomJS*/lcov.info | coveralls || true"
},
"dependencies": {
"js-data": "^2.8.2 <3",
"js-data-http": "^2.1.2 <3"
},
"devDependencies": {
"axios": "0.9.1",
"chai": "3.5.0",
"codacy-coverage": "1.1.3",
"coveralls": "2.11.8",
"es6-promise": "3.1.2",
"lodash": "^4.0.0",
"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-html-reporter": "0.2.7",
"karma-junit-reporter": "0.3.8",
"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",
"tslint": "=3.2.1",
"tslint-microsoft-contrib": "^1.0.0",
"typescript": "^1.7.5"
}
}