-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.07 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "redux-jsonapi",
"description": "Redux reducer, actions, and serializers for JSON:API",
"homepage": "https://github.com/andhite/redux-jsonapi#readme",
"version": "1.1.3",
"main": "dist/index.js",
"author": {
"name": "Andrew Hite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andyhite/redux-jsonapi.git"
},
"bugs": {
"url": "https://github.com/andyhite/redux-jsonapi/issues"
},
"dependencies": {
"humps": "^1.1.0",
"qs": "^6.2.1",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^14.1.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"bumped": "^0.9.3",
"codeclimate-test-reporter": "^0.3.3",
"cpx": "^1.3.2",
"cross-env": "^2.0.0",
"es6-promise": "^3.3.1",
"eslint": "^3.4.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.11.4",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.1.2",
"fetch-mock": "^5.1.5",
"git-dirty": "^1.0.2",
"isomorphic-fetch": "^2.2.1",
"jest-cli": "^14.1.0",
"redux-mock-store": "^1.2.0",
"rimraf": "^2.5.4"
},
"files": [
"dist"
],
"scripts": {
"build": "cross-env NODE_ENV=production babel ./src --out-dir ./dist --ignore __tests__",
"clean": "rimraf dist",
"lint": "eslint ./src --ext .js",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"release": "bumped release",
"release:patch": "bumped release patch",
"test": "jest",
"test:watch": "npm run test -- --watch --onlyChanged"
},
"license": "MIT",
"jest": {
"automock": false,
"setupFiles": [
"./setup.jest.js"
],
"testPathDirs": [
"./example",
"./src"
],
"testRegex": "\\.test\\.js$"
}
}