-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathpackage.json
107 lines (107 loc) · 4.36 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
{
"name": "redux-orm",
"version": "0.16.2",
"description": "Simple ORM to manage and query your state trees",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "jsnext/index.js",
"types": "types/index.d.ts",
"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": "run-p transpile:*",
"transpile:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib --extensions .js,.ts --ignore */test,**/*.d.ts",
"transpile:es": "cross-env BABEL_ENV=es babel src --out-dir es --extensions .js,.ts --ignore */test,**/*.d.ts",
"transpile:jsnext": "cross-env BABEL_ENV=jsnext babel src --out-dir jsnext --extensions .js,.ts --ignore */test,**/*.d.ts",
"transpile:types": "cross-env BABEL_ENV=cjs babel src --out-dir types --extensions .ts --ignore */test --keep-file-extension",
"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": "run-s clean transpile && run-p build:umd build:umd:min",
"pub": "run-s ensure-clean-tree ensure-version-not-published lint test build test:es5 && npm publish && git push origin && npm run clean",
"pub:next": "run-s ensure-clean-tree ensure-version-not-published lint test build 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": "run-p lint:*",
"lint:es": "eslint src",
"clean": "rimraf lib es jsnext types dist docs coverage"
},
"keywords": [
"redux",
"orm",
"state",
"immutable"
],
"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.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-function-sent": "^7.12.13",
"@babel/plugin-proposal-json-strings": "^7.13.8",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-classes": "^7.13.0",
"@babel/plugin-transform-destructuring": "^7.13.0",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.13.9",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.8",
"@types/jsdoc-to-markdown": "^6.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"codecov": "^3.8.1",
"cross-env": "^7.0.3",
"deep-freeze": "0.0.1",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.3.1",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^6.0.1",
"lodash-webpack-plugin": "^0.11.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@babel/runtime": "^7.13.9",
"immutable-ops": "^0.7.0",
"lodash": "^4.17.21",
"re-reselect": "^4.0.0",
"reselect": "^3.0.1"
}
}