-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.21 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
{
"name": "redux-actions-ts-reducer",
"version": "0.2.0",
"description": "Helps You to write reducers for redux-action actions in TypeScript in type-safe manner and without needing to specify excessive type information - everything is inferred based on types of redux-action actions and initial state",
"main": "./dist/index.js",
"typings": "./dist/index",
"types": "./dist/index",
"scripts": {
"dev": "concurrently --kill-others \"npm run build:watch\" \"npm run test:watch\"",
"setupPreCommitHook": "cp ./hooks/pre-commit ./.git/hooks && echo 'installed pre-commit hook'",
"clean": "rimraf dist coverage junit.xml redux-actions-ts-reducer-*.tgz",
"clean:test": "rimraf dist/**/__tests__/",
"build": "tsc -p .",
"build:watch": "npm run build -- -w",
"lint": "npm run tslint && echo 'tslint check: OK'",
"tslint": "tslint --project ./tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"preversion": "npm run clean && npm run build && npm run test && npm run lint && npm run clean:test && echo 'Bumped version, You are ready to publish'",
"postversion": "echo 'run \"git push --follow-tags && npm publish\"' to publish"
},
"keywords": [
"redux",
"redux-actions",
"TypeScript"
],
"author": "Ats Uiboupin",
"license": "Apache-2.0",
"jest": {
"notify": true,
"moduleFileExtensions": [
"ts",
"js",
"json",
"jsx",
"node"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.test\\.ts$",
"verbose": true,
"testResultsProcessor": "jest-junit",
"bail": false,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"text-summary"
]
},
"peerDependencies": {
"redux-actions": "^2.0.3"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/redux-actions": "^2.2.4",
"concurrently": "^3.5.1",
"jest": "^22.4.3",
"jest-junit": "^3.7.0",
"redux": "^4.0.0",
"redux-actions": "^2.0.3",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.4",
"tslint": "5.9.1",
"tslint-config-airbnb": "5.8.0",
"typescript": "2.8.3"
},
"files": [
"src/",
"dist/"
]
}