-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
66 lines (66 loc) · 1.93 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
{
"name": "redux-saga-firebase",
"version": "0.15.0",
"description": "A redux saga integration for firebase.",
"author": "Nathan Gaberel <nathan@gnab.fr>",
"homepage": "https://github.com/n6g7/redux-saga-firebase",
"license": "MIT",
"main": "dist/index.js",
"types": "./index.d.ts",
"scripts": {
"del": "rimraf dist",
"build": "yarn del && NODE_ENV=production babel src --out-dir dist",
"build:win": "yarn del&&set NODE_ENV=production&&babel src --out-dir dist",
"version": "cp -r docs/reference/{dev,v$(jq .version -r package.json)} && git add docs/reference/v$(jq .version -r package.json)",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"pretest": "yarn test:lint && yarn test:format && yarn test:ts",
"test": "NODE_ENV=test jest",
"test:coverage": "yarn test --coverage",
"test:coverage:win": "yarn test:win --coverage",
"test:format": "prettier -l \"src/**/*.js\"",
"test:lint": "eslint src",
"test:ts": "tsc",
"test:win": "set NODE_ENV=test&&jest"
},
"repository": {
"url": "git@github.com:n6g7/redux-saga-firebase.git",
"type": "git"
},
"dependencies": {
"@babel/runtime": "^7.4.4"
},
"peerDependencies": {
"firebase": "^5.0.4",
"redux-saga": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@types/node": "^14.0.1",
"@types/redux": "^3.6.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.1.0",
"eslint": "^7.0.0",
"firebase": "^7.2.0",
"jest": "^26.0.1",
"prettier": "^1.17.0",
"redux-saga": "^1.0.2",
"rimraf": "^3.0.0",
"typescript": "^3.4.5",
"whatwg-fetch": "^3.0.0"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
}
}
}