-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.54 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
{
"name": "js-data-jsonapi-light",
"version": "1.0.0-beta.2",
"description": "JsonApi adapter serializer/dezerializer light.",
"main": "./dist/js-data-jsonapi-light.js",
"author": {
"name": "Jeremy Trufier",
"email": "jeremy@wikodit.fr"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Wikodit/js-data-jsonapi-light.git"
},
"bugs": {
"url": "https://github.com/Wikodit/js-data-jsonapi-light/issues"
},
"scripts": {
"build": "webpack",
"dev": "webpack --watch",
"test": "karma start"
},
"keywords": [
"jsonapi",
"js-data",
"jsdata",
"js-data-http",
"adapter",
"browser",
"rest",
"api"
],
"typings": "./typings/js-data-jsonapi-light.d.ts",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/express": "^4.0.35",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"@types/sinon": "^1.16.35",
"chai": "^3.5.0",
"express": "^4.14.1",
"freeport": "^1.0.5",
"js-data-adapter": "^0.8.3",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"sinon": "^2.0.0-pre.5",
"ts-loader": "=2.0.1",
"ts-node": "^2.1.0",
"typescript": "^2.1.6",
"webpack": "^2.2.1"
},
"dependencies": {
"es6-promise": "^4.0.5",
"js-data": ">=3.0.0",
"js-data-http": ">=3.0.0"
}
}