-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 4.33 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "redux-data-collections",
"version": "0.0.12",
"description": "Redux actions, reducers and selectors for managing data in JSONAPI format.",
"browser": "dist/redux-data-collections.js",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib dist es coverage",
"lint": "yarn lint:src && yarn lint:examples",
"lint:src": "eslint src test build",
"lint:examples": "eslint examples",
"test": "cross-env BABEL_ENV=commonjs jest",
"test:watch": "yarn test -- --watch",
"test:cov": "yarn test -- --coverage",
"test:examples": "babel-node examples/testAll.js",
"check:src": "yarn lint:src && yarn test",
"check:examples": "yarn build:examples && yarn lint:examples && yarn test:examples",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/redux-data-collections.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/redux-data-collections.min.js",
"build:examples": "babel-node examples/buildAll.js",
"build": "yarn build:commonjs && yarn build:es && yarn build:umd && yarn build:umd:min",
"dev": "watch 'yarn build:commonjs' ./src",
"prepublish": "yarn clean && yarn check:src && yarn build",
"postpublish" : "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "yarn docs:prepare && gitbook build -g heygrady/redux-data-collections && cp logo/apple-touch-icon.png _book/gitbook/images/apple-touch-icon-precomposed-152.png && cp logo/favicon.ico _book/gitbook/images",
"docs:watch": "yarn docs:prepare && gitbook serve",
"docs:publish": "yarn docs:clean && yarn docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:heygrady/redux-data-collections gh-pages --force",
"dev:link": "npm link",
"dev:unlink": "npm unlink"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heygrady/redux-data-collections.git"
},
"keywords": [],
"author": "Grady Kuhnline <github@heygrady.net> (https://github.com/heygrady)",
"license": "MIT",
"bugs": {
"url": "https://github.com/heygrady/redux-data-collections/issues"
},
"homepage": "https://github.com/heygrady/redux-data-collections#readme",
"dependencies": {
"inflection": "^1.10.0",
"invariant": "^2.2.2",
"lodash.get": "^4.4.2",
"lodash.memoize": "^4.1.0",
"lodash.snakecase": "^4.0.1",
"lodash.upperfirst": "^4.2.0",
"query-string": "^4.3.2",
"reduce-reducers": "^0.1.2",
"redux": "^3.6.0",
"redux-actions": "^1.2.0",
"redux-saga": "^0.14.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"cross-env": "^3.1.3",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-flowtype": "^2.4.0",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^2.0.1",
"eslint-watch": "^2.1.11",
"jest": "^18.0.0",
"mocha": "^3.2.0",
"nodemon": "^1.9.2",
"rimraf": "^2.5.4",
"watch": "^1.0.1",
"webpack": "^1.14.0"
},
"npmName": "redux-data-collections",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"jest": {
"modulePaths": [
"<rootDir>/src/"
],
"testPathDirs": [
"tests"
],
"testRegex": "(/tests/.*\\.spec.js)$"
}
}