-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "redux-heat",
"version": "0.4.0",
"description": "Redux side-effects as a function of state.",
"main": "index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib --ignore *.spec.js",
"format": "find ./src -name \"*js\" | xargs prettier --write",
"prepare": "npm test && npm run build",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint src/*",
"test:unit": "jest",
"test:unit:watch": "jest --watchAll"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/batata-frita/redux-heat.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/batata-frita/redux-heat/issues"
},
"homepage": "https://github.com/batata-frita/redux-heat#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint-config-prettier": "^2.5.0",
"eslint-plugin-prettier": "^2.3.0",
"eslint": "^4.7.0",
"jest": "^20.0.4",
"prettier": "^1.7.0",
"redux": "^3.7.1"
},
"dependencies": {
"is-observable": "^0.2.0",
"is-promise": "^2.1.0",
"most": "^1.5.0",
"ramda": "^0.24.1"
}
}