-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 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
{
"name": "redux-from-to",
"version": "1.1.0",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"description": "Redux state manager for handling promises",
"scripts": {
"lint": "eslint .",
"test": "mocha --compilers js:babel-register",
"cover": "nyc --reporter=html yarn test",
"cover:check": "nyc check-coverage --lines 100 yarn test",
"cover:report": "nyc report --reporter=lcov yarn test > coverage.lcov && codecov --token=1e0fc9e0-8e01-4f64-b9ac-9dd8970268ec",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env babel src --out-dir es",
"build": "yarn run build:commonjs && yarn run build:es"
},
"author": "Vasyl Bratushka <bratushka.v@gmail.com>",
"contributors": [
"Marc Davies <mwgdavies@gmail.com>"
],
"license": "WTFPL",
"keywords": [
"from-to",
"fromTo",
"immutable",
"Promise",
"redux"
],
"repository": {
"type": "git",
"url": "https://github.com/bratushka/redux-from-to.git"
},
"peerDependencies": {
"immutable": "^3.0.0",
"redux-thunk": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.1",
"codecov": "^2.3.0",
"cross-env": "^5.0.5",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"immutable": "^3.8.1",
"mocha": "^3.5.0",
"nyc": "^11.2.1",
"redux": "^3.7.2",
"redux-mock-store": "^1.2.3",
"redux-thunk": "^2.2.0",
"webpack": "^3.5.5"
},
"dependencies": {
"lodash.values": "^4.3.0"
}
}