forked from redux-orm/redux-orm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 3.97 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
{
"name": "redux-orm",
"version": "0.16.1",
"description": "Simple ORM to manage and query your state trees",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "src/index.js",
"sideEffects": false,
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:es5": "jest --config=jest.es5.config.js",
"test:perf": "jest --config=jest.perf.config.js",
"transpile:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib --ignore */test",
"transpile:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore */test",
"build:umd": "webpack --config webpack.dev.js",
"build:umd:min": "webpack --config webpack.prod.js",
"build:docs": "jsdoc src -d docs -r -c ./jsdoc.conf.json --verbose",
"build:api-docs": "gulp api-docs",
"build": "npm run clean && npm run transpile:cjs && npm run transpile:es && npm run build:umd && npm run build:umd:min && npm run build:docs",
"pub": "npm run ensure-clean-tree && npm run ensure-version-not-published && npm run lint && npm run test && npm run build && npm run test:es5 && npm publish && git push origin && npm run clean",
"pub:next": "npm run ensure-clean-tree && npm run ensure-version-not-published && npm run lint && npm run test && npm run build && npm run test:es5 && npm publish --tag next && git push origin && npm run clean",
"ensure-version-not-published": "[ -z \"$(npm info $(npm list | head -n 1 | cut -d ' ' -f1) 2> /dev/null)\" ] || (echo \"Error: $(npm list | head -n 1 | cut -d ' ' -f1) has already been published.\" && false)",
"ensure-clean-tree": "[ -z \"$(git status -s)\" ] || (echo \"Error: There are uncommitted changes in the git repostory.\" && false)",
"lint": "eslint src",
"clean": "rimraf lib es dist docs coverage"
},
"keywords": [
"redux",
"orm"
],
"author": "Tommi Kaikkonen <tommi.kaikkonen@aalto.fi>",
"repository": {
"type": "git",
"url": "https://github.com/redux-orm/redux-orm.git"
},
"bugs": {
"url": "https://github.com/redux-orm/redux-orm/issues"
},
"homepage": "https://redux-orm.github.io/redux-orm",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.0",
"@babel/core": "^7.8.0",
"@babel/plugin-proposal-class-properties": "^7.8.0",
"@babel/plugin-proposal-decorators": "^7.8.0",
"@babel/plugin-proposal-export-namespace-from": "^7.8.0",
"@babel/plugin-proposal-function-sent": "^7.8.0",
"@babel/plugin-proposal-json-strings": "^7.8.0",
"@babel/plugin-proposal-numeric-separator": "^7.8.0",
"@babel/plugin-proposal-throw-expressions": "^7.8.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.0",
"@babel/plugin-syntax-import-meta": "^7.8.0",
"@babel/plugin-transform-classes": "^7.8.0",
"@babel/plugin-transform-destructuring": "^7.8.0",
"@babel/plugin-transform-modules-commonjs": "^7.8.0",
"@babel/plugin-transform-runtime": "^7.8.0",
"@babel/preset-env": "^7.8.0",
"@babel/register": "^7.8.0",
"@types/jsdoc-to-markdown": "^4.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"codecov": "^3.6.1",
"cross-env": "^6.0.3",
"deep-freeze": "0.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-prettier": "^3.1.2",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.3",
"lodash-webpack-plugin": "^0.11.5",
"prettier": "^1.19.1",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"rimraf": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.8.0",
"immutable-ops": "^0.7.0",
"lodash": "^4.17.15",
"re-reselect": "^3.4.0",
"reselect": "^3.0.1"
}
}