-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
76 lines (76 loc) · 1.88 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
{
"name": "redux-callbag",
"version": "0.2.3",
"description": "redux callbag",
"main": "dist/redux-callbag.js",
"module": "dist/redux-callbag.es.js",
"scripts": {
"test": "npm run build && cross-env NODE_ENV=test ava",
"prebuild": "rimraf dist",
"build": "rollup -c",
"precommit": "lint-staged && npm run test"
},
"files": [
"dist",
"logo.jpg"
],
"repository": {
"type": "git",
"url": "git+https://github.com/janryWang/redux-callbag.git"
},
"author": "janryWang",
"license": "MIT",
"bugs": {
"url": "https://github.com/janryWang/redux-callbag/issues"
},
"homepage": "https://github.com/janryWang/redux-callbag#readme",
"dependencies": {
"callbag-filter": "^1.0.1",
"callbag-map-promise": "0.1.x",
"callbag-share": "^1.0.0",
"mitt": "^1.1.3"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.42",
"@babel/node": "7.0.0-beta.42",
"@babel/plugin-proposal-pipeline-operator": "7.0.0-beta.42",
"@babel/plugin-transform-modules-commonjs": "7.0.0-beta.42",
"@babel/preset-env": "7.0.0-beta.42",
"ava": "^1.0.0-beta.3",
"callbag-basics": "^3.0.0",
"callbag-delay": "^0.1.0",
"callbag-timer": "^1.0.0",
"cross-env": "^5.1.4",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.11.x",
"redux": "^3.7.2",
"rimraf": "^2.6.2",
"rollup": "^0.57.1",
"rollup-plugin-babel": "4.0.0-beta.3"
},
"lint-staged": {
"src/*.js": [
"prettier --write --tab-width 4 --no-semi",
"git add"
],
"dist/*.js": [
"prettier --write --tab-width 4 --no-semi",
"git add"
],
"test.js": [
"prettier --write --tab-width 4 --no-semi",
"git add"
]
},
"ava": {
"babel": {
"testOptions": {
"babelrc": false,
"plugins": [
"@babel/plugin-proposal-pipeline-operator"
]
}
}
}
}