-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "zeal-redux-utils",
"version": "2.0.0",
"description": "Utility functions for working with Redux",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"clean": "rimraf lib",
"format": "prettier --write '**/*.{js,json,md}'",
"precommit": "lint-staged",
"prepublish": "yarn test && yarn run clean && yarn build",
"test": "jest",
"test:watch": "yarn test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codingzeal/zeal-redux-utils.git"
},
"keywords": [
"zeal",
"redux"
],
"author": "Zeal",
"license": "MIT",
"bugs": {
"url": "https://github.com/codingzeal/zeal-redux-utils/issues"
},
"homepage": "https://github.com/codingzeal/zeal-redux-utils#readme",
"dependencies": {
"flux-standard-action": "^2.0.3",
"ramda": "^0.25.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
]
},
"lint-staged": {
"*.{js,json,md}": "prettier --list-different"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.2.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-1": "^6.16.0",
"husky": "^0.14.3",
"jest": "^23.2.0",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"rimraf": "^2.5.4"
}
}