-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "resynchronize",
"version": "2.0.1",
"description": "Redux utils to manage async functions and promises",
"license": "MIT",
"main": "dist/bundle.js",
"repository": "infonl/resynchronize",
"keywords": [
"redux",
"async",
"actions",
"reducers"
],
"authors": [
"Marcos Miani <marcos.miani@gmail.com>"
],
"scripts": {
"clean": "rimraf dist/bundle.js",
"lint": "standard 'src/lib/**/*.js'",
"test": "jest --config jest.config.js",
"test:watch": "npm test -- --watch",
"test:cov": "npm test -- --coverage",
"test:cov-watch": "npm test -- --coverage --watch",
"check": "npm run lint && npm run test",
"build": "npm run check && rollup -c",
"publish": "npm publish",
"stryker": "stryker run"
},
"husky": {
"hooks": {
"pre-push": "npm run check"
}
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@stryker-mutator/core": "^2.4.0",
"@stryker-mutator/html-reporter": "^2.4.0",
"@stryker-mutator/javascript-mutator": "^2.4.0",
"@stryker-mutator/jest-runner": "^2.4.0",
"@types/jest": "^24.0.25",
"babel-jest": "^24.9.0",
"husky": "^2.7.0",
"jest": "^24.9.0",
"rimraf": "^2.7.1",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"standard": "^14.3.1"
},
"dependencies": {}
}