-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.13 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@dabapps/redux-requests",
"version": "0.6.0",
"description": "Library for simple redux requests",
"main": "dist/js/index.js",
"directories": {},
"publishConfig": {
"access": "public"
},
"scripts": {
"dist": "./scripts/dist",
"lint": "tsc --noEmit --project tsconfig.json && npm run prettier-check && tslint --project tsconfig.json '{src,tests,types,examples,docs}/**/*.@(ts|tsx)'",
"prettier-check": "prettier --check '{src,tests,types,examples,docs}/**/*.{ts,tsx,js,jsx}'",
"prettier": "prettier --write '{src,tests,types,examples,docs}/**/*.{ts,tsx,js,jsx}'",
"tests": "jest",
"test": "npm run lint && npm run tests -- --runInBand --coverage",
"prepublishOnly": "npm test && npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dabapps/redux-requests.git"
},
"keywords": [
"request",
"requests",
"responses",
"redux",
"dabapps"
],
"author": "DabApps",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dabapps/redux-requests/issues"
},
"homepage": "https://github.com/dabapps/redux-requests#readme",
"dependencies": {
"@types/js-cookie": "^2.2.5",
"@types/node": "^12.12.31",
"axios": "^0.21.4",
"flux-standard-action": "^1.2.0",
"js-cookie": "^2.2.1",
"path": "^0.12.7",
"redux": "*",
"redux-thunk": "*"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"request": "^2.88.2",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"tslint-config-dabapps": "^0.6.2",
"typescript": "^3.3.4000"
},
"peerDependencies": {
"redux": "*",
"redux-thunk": "*"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|\\.(test|spec))\\.(ts|tsx|js|jsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testPathIgnorePatterns": [
"<rootDir>/tests/helpers/*"
]
}
}