-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.55 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
{
"name": "create-action-ts",
"version": "1.2.0",
"description": "Helper to create typed actions creators in React+Redux+TypeScript apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "tslint --config ./tslint.json ./**/*.ts",
"build": "rimraf dist && tsc",
"prepare": "npm run build",
"prepublishOnly": "git push && git push --tags",
"test": "jest --coverage",
"type-check": "tsc --noEmit",
"ci": "npm run type-check && npm run lint && npm run test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm run ci"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahtohbi4/create-action-ts.git"
},
"author": {
"name": "Alexandr Antonov",
"email": "[email protected]"
},
"keywords": [
"typescript",
"react",
"redux",
"action",
"action creator"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ahtohbi4/create-action-ts/issues"
},
"homepage": "https://github.com/ahtohbi4/create-action-ts#readme",
"jest": {
"roots": [
"src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"devDependencies": {
"@types/jest": "^26.0.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"tslint": "^6.1.2",
"typescript": "^3.9.6"
},
"peerDependencies": {
"typescript": ">=2.0"
}
}