forked from stevenpetryk/jsonapi-normalizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.33 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.33 KB
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
{
"name": "jsonapi-normalizer",
"version": "2.0.1",
"description": "Normalizes JSONAPI responses for use in Redux or similar systems.",
"main": "dist/index.js",
"scripts": {
"build": "webpack",
"test": "npm run lint && jest",
"lint": "standard",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "stevenpetryk/jsonapi-normalizer"
},
"keywords": [
"jsonapi",
"json",
"normalizr",
"redux"
],
"author": "Steven Petryk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenpetryk/jsonapi-normalizer/issues"
},
"homepage": "https://github.com/stevenpetryk/jsonapi-normalizer#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"jest": "^23.3.0",
"jest-junit": "^5.1.0",
"standard": "^8.5.0",
"webpack": "^1.13.3"
},
"standard": {
"globals": [
"afterEach",
"beforeEach",
"afterAll",
"beforeAll",
"describe",
"expect",
"it",
"it.only",
"it.skip",
"fit",
"jest",
"test",
"xdescribe",
"fdescribe",
"xit",
"xtest"
]
}
}