-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "@dabapps/redux-create-reducer",
"version": "1.1.0",
"description": "A utility to create redux reducers from a set of handlers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dist": "./scripts/dist",
"prettier-check": "prettier --check '**/*.{ts,tsx,js,jsx}'",
"prettier": "prettier --write '**/*.{ts,tsx,js,jsx}'",
"lint": "npm run prettier-check && tslint --project tsconfig.json '{src,tests}/**/*.{ts,tsx}' -e '**/*.d.ts'",
"typecheck": "tsc --project tsconfig.json --noEmit",
"tests": "jest",
"test": "npm run lint && npm run typecheck && npm run tests -- --runInBand --coverage",
"prepublishOnly": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dabapps/redux-create-reducer.git"
},
"keywords": [
"redux",
"reducer",
"utility",
"util",
"create"
],
"author": "Jake 'Sid' Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/dabapps/redux-create-reducer/issues"
},
"homepage": "https://github.com/dabapps/redux-create-reducer#readme",
"dependencies": {
"redux": "*"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"tslint-config-dabapps": "^0.6.2",
"typescript": "^3.3.4000"
},
"peerDependencies": {
"redux": "*"
}
}