-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.1 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
{
"name": "redux-immutable-collections",
"version": "0.0.0-development",
"description": "Reducers and actions for storing collections of documents in Immutable.js collections in Redux state.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"lint:watch": "esw --watch src test",
"flow": "flow",
"flow:coverage": "for file in src/**.js test/**.js; do echo $file; flow coverage $file; done",
"flow:watch": "flow-watch -e js,js.flow,flowconfig --ignore lib/ --ignore node_modules/ --watch .flowconfig --watch src/ --watch test/",
"gen-flow-files": "flow gen-flow-files src/ --out-dir lib",
"copy-flow-files": "cd src; copy *.js.flow **/*.js.flow ../lib",
"build": "rimraf lib && babel src --out-dir lib",
"test": "NODE_ENV=production BABEL_ENV=test nyc --reporter=lcov --reporter=text mocha $npm_package_config_mocha",
"commitmsg": "validate-commit-msg",
"precommit": "npm run lint && flow",
"prepush": "npm test",
"prepublish": "npm run lint && flow && npm test && npm run build && npm run copy-flow-files",
"open:coverage": "open coverage/lcov-report/index.html",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"mocha": "--compilers js:babel-core/register ./test/**/*.js",
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/redux-immutable-collections.git"
},
"keywords": [
"redux",
"immutable",
"immutable.js",
"collection",
"mongo"
],
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcoreio/redux-immutable-collections/issues"
},
"homepage": "https://github.com/jcoreio/redux-immutable-collections#readme",
"devDependencies": {
"@jedwards1211/eslint-config": "^1.0.0",
"@jedwards1211/eslint-config-flow": "^1.0.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"copy": "^0.3.0",
"coveralls": "^2.13.0",
"eslint": "^4.1.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-watch": "^3.1.0",
"flow-bin": "^0.56.0",
"flow-watch": "^1.1.1",
"husky": "^0.14.0",
"immutable": "^4.0.0-rc.9",
"istanbul": "^0.4.5",
"lodash.mapvalues": "^4.6.0",
"mindfront-redux-utils": "^1.6.1",
"mocha": "^3.2.0",
"nyc": "^11.0.0",
"rimraf": "^2.6.1",
"semantic-release": "^7.0.1",
"validate-commit-msg": "^2.12.1"
},
"peerDependencies": {
"immutable": "^4.0.0 || ^4.0.0-rc"
},
"dependencies": {
"lodash.defaults": "^4.2.0"
}
}