This repository has been archived by the owner on Mar 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.04 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
{
"name": "redux-lists",
"version": "1.0.0",
"description": "A collection organizer using lists and maps to manage data entities",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"authors": [
"Manuel BEAUDRU <beaudru.manuel@gmail.com> (https://github.com/mbeaudru)",
"Thomas BERTET <thomas.bertet@gmail.com> (https://github.com/thomasbertet)"
],
"repository": "github:mirakl/redux-lists",
"files": [
"es",
"lib",
"dist",
"README"
],
"license": "MIT",
"scripts": {
"test": "jest",
"clean": "rimraf lib dist es",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es && npm run build:remove-mocks",
"prepublish": "npm run clean && npm run test && npm run build",
"posttest": "npm run lint",
"lint": "eslint src test",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --ignore __tests__",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore __tests__",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
"build:remove-mocks": "rm -rf es/**/__mocks__ && rm -rf lib/**/__mocks__ && rm -rf es/__mocks__ && rm -rf lib/__mocks__",
"readme-toc": "markdown-toc readme.md"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-loader": "7.1.4",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-latest": "6.24.1",
"cross-env": "5.1.4",
"eslint": "4.19.1",
"eslint-config-standard": "11.0.0",
"eslint-config-standard-react": "6.0.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-react": "7.10.0",
"eslint-plugin-standard": "3.1.0",
"jest": "22.4.3",
"markdown-toc": "1.2.0",
"prettier": "1.12.1",
"release-it": "7.4.4",
"webpack": "4.6.0",
"webpack-cli": "2.0.14"
},
"dependencies": {
"lodash": "4.17.5",
"reselect": "3.0.1"
}
}