forked from redux-orm/redux-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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
{
"name": "redux-orm",
"version": "0.9.4",
"description": "Simple ORM to manage and query your state trees",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage",
"prepublish": "npm run build",
"build": "npm run clean && babel src --out-dir lib && webpack && webpack --mode=build && jsdoc src -d docs -c ./jsdoc.conf.json --verbose",
"pub": "npm run lint && npm run test && npm run build && npm version patch && npm publish && git push origin && gulp deploy && npm run clean",
"lint": "eslint src",
"deploydocs": "npm run build && gulp deploy",
"clean": "rimraf lib && rimraf dist && rimraf docs"
},
"keywords": [
"redux",
"orm"
],
"author": "Tommi Kaikkonen <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tommikaikkonen/redux-orm.git"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-jest": "^20.0.1",
"babel-loader": "^6.2.5",
"babel-plugin-transform-es2015-classes": "6.18.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.8.0",
"codecov": "^2.2.0",
"cross-env": "^3.2.4",
"deep-freeze": "0.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^20.0.1",
"gulp": "^3.9.0",
"gulp-gh-pages": "^0.5.4",
"gulp-rename": "^1.2.2",
"jest": "^20.0.1",
"jsdoc": "^3.5.5",
"rimraf": "^2.6.1",
"typescript-babel-jest": "^1.0.3",
"webpack": "^1.13.2",
"yargs": "^5.0.0"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"immutable-ops": "^0.5.2",
"lodash": "^4.12.0",
"reselect": "^2.5.4"
}
}