This repository has been archived by the owner on Oct 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.12 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
{
"name": "redux-shelf",
"version": "0.0.9",
"main": "lib/redux-shelf.js",
"module": "es/redux-shelf.js",
"description":
"Helper reducers and actions to take away your boilerplate code from both Data and Communication state types",
"scripts": {
"format": "prettier --write {src,test}/**/*.js",
"precommit": "pretty-quick --staged",
"test": "cross-env BABEL_ENV=commonjs jest",
"test:coverage": "npm test -- --coverage",
"eslint-check":
"eslint --print-config .eslintrc | eslint-config-prettier-check",
"build:commonjs": "cross-env NODE_ENV=cjs rollup -c -o lib/redux-shelf.js",
"build:es":
"cross-env BABEL_ENV=es NODE_ENV=es rollup -c -o es/redux-shelf.js",
"build:umd":
"cross-env BABEL_ENV=es NODE_ENV=development rollup -c -o dist/redux-shelf.js",
"build:umd:min":
"cross-env BABEL_ENV=es NODE_ENV=production rollup -c -o dist/redux-shelf.min.js",
"build":
"npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min"
},
"repository": {
"type": "git",
"url": "https://github.com/lemes/redux-shelf.git"
},
"authors": [
"Guilherme Popolin (https://github.com/guilhermespopolin)",
"Rener Baffa (https://github.com/renerbaffa)",
"Vinícius Lemes (https://github.com/lemes)"
],
"license": "MIT",
"private": false,
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.1.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"husky": "^0.14.3",
"jest": "^22.1.4",
"prettier": "^1.10.2",
"pretty-quick": "^1.2.3",
"rollup": "^0.55.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0"
}
}