forked from yury-dymov/json-api-normalizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "json-api-normalizer",
"version": "0.4.12",
"description": "JSON API response normalizer",
"main": "src/normalize.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack -p",
"clean": "cross-env rimraf dist coverage lib",
"coverage": "cross-env NODE_ENV=production webpack && istanbul cover _mocha -- --compilers js:babel-core/register && NODE_ENV=production webpack -p",
"lint": "cross-env eslint src --ext .js",
"test": "cross-env mocha --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yury-dymov/json-api-normalizer.git"
},
"keywords": [
"JSON",
"API",
"normalize",
"redux"
],
"author": "Yury Dymov",
"license": "MIT",
"bugs": {
"url": "https://github.com/yury-dymov/json-api-normalizer/issues"
},
"homepage": "https://github.com/yury-dymov/json-api-normalizer#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"cross-env": "^5.1.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"rimraf": "^2.5.4",
"webpack": "^1.14.0",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"lodash": "^4.17.10"
}
}