-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "redux-saga-test-engine",
"version": "3.0.1",
"description": "Redux saga test helper",
"main": "build/index.js",
"repository": "DNAinfo/redux-saga-test-engine",
"scripts": {
"test": "ava tests/",
"test:watch": "yarn test -- --watch",
"lint": "eslint ./src ./tests",
"build": "rimraf build && cross-env BABEL_ENV=es babel src -d build --ignore 'tests'",
"prettier": "prettier --print-width 100 --tab-width 2 --use-tabs false --semi false --single-quote true --trailing-comma es5 --write \"{sagas,src,tests}/**/*.js\"",
"prepublish": "yarn run build",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"npm run prettier",
"git add"
]
},
"keywords": [
"redux",
"redux-saga",
"test"
],
"author": "DNAinfo",
"license": "MIT",
"dependencies": {
"deep-equal": "^1.0.1"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-preset-env": "^1.7.0",
"cross-env": "^4.0.0",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"lint-staged": "^4.1.3",
"prettier": "^1.6.1",
"redux-saga": "^1.0.2",
"rimraf": "^2.6.1"
}
}