-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.34 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-api-collections",
"version": "0.4.6",
"description": "Type-safe helpers for dealing with Rest-Framework backed collections in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "npm run typecheck && npm run lint && npm run tests -- --runInBand --coverage",
"prepublishOnly": "npm test && npm run dist"
},
"dependencies": {
"@dabapps/redux-requests": "^0.5.5",
"@types/js-cookie": "^2.2.4",
"@types/node": "^10.5.0",
"@types/underscore": "^1.9.3",
"axios": "^0.18.1",
"flux-standard-action": "^1.2.0",
"js-cookie": "^2.2.1",
"path": "^0.12.7",
"path-to-regexp": "^4.0.4",
"redux": "*",
"redux-thunk": "*",
"underscore": "^1.9.1"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"jest": "^25.2.2",
"prettier": "^1.19.1",
"request": "^2.88.0",
"ts-jest": "^25.2.1",
"tslint": "^5.20.1",
"tslint-config-dabapps": "^0.6.2",
"typescript": "^3.3.4000"
},
"peerDependencies": {
"redux": "*",
"redux-thunk": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dabapps/redux-api-collections.git"
},
"author": "DabApps",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dabapps/redux-api-collections/issues"
},
"homepage": "https://github.com/dabapps/redux-api-collections#readme",
"keywords": [
"collections",
"redux",
"state"
],
"jest": {
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|\\.(test|spec))\\.(ts|tsx|js|jsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testPathIgnorePatterns": [
"<rootDir>/tests/helpers/*"
]
}
}