This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
108 lines (108 loc) · 3.56 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "deox",
"version": "4.0.0",
"description": "Functional Type-safe Flux Standard Utilities",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/deox.umd.min.js",
"sideEffects": false,
"repository": "https://github.com/thebrodmann/deox",
"author": "Mohammad Hasani <atretoname@gmail.com> (https://github.com/thebrodmann)",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test-tsc": "jest -c jest.tsc.config.js",
"test-tsc:watch": "npm run test-dts -- --watch",
"test-dts": "jest -c dts-jest.config.js",
"test-dts:watch": "npm run test-dts -- --watch",
"lint": "tslint -p .",
"lint:fix": "npm run lint -- --fix",
"lint:circleci": "circleci config validate",
"pretty": "prettier --write",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.build.json && rollup -c",
"postbuild": "rimraf tmp",
"docs:dev": "DEBUG=true docz dev",
"docs:build": "docz build",
"clean": "rimraf tmp dist coverage",
"prepare": "not-in-install || { npm run test-tsc && npm run test && npm run test-dts && npm run build; }"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^7.1.0-beta.10",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.2",
"@thebrodmann/tslint-config": "0.2.1",
"@types/jest": "^24.0.0",
"@types/node": "^10.12.18",
"codecov": "^3.1.0",
"docz": "^2.3.1",
"dts-jest": "^23.0.0",
"husky": "^2.0.0",
"in-publish": "^2.0.0",
"jest": "^26.6.3",
"jest-runner-tsc": "^1.5.1",
"lint-staged": "^8.1.0",
"rimraf": "^2.6.3",
"rollup": "^1.14.4",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-filesize": "^6.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-sizes": "^0.5.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.0.0",
"rxjs-marbles": "^5.0.0",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.3",
"tslint": "^5.12.1",
"typescript": "^4.2.3"
},
"peerDependencies": {
"rxjs": ">=6.0.0-beta.0 <7",
"tslib": "^2.1.0"
},
"keywords": [
"reducer",
"action",
"typesafe",
"redux",
"react",
"angular",
"rxjs",
"ngrx",
"typescript",
"action-creator"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint && npm run test-tsc -- --bail && npm run test -- --bail && npm run test-dts -- --bail",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"npm run lint:fix --",
"git add",
"npm run test-tsc -- --bail --findRelatedTests",
"npm run test -- --bail --findRelatedTests",
"npm run test-dts -- --bail --findRelatedTests"
],
"*.{md,mdx,json,js}": [
"npm run pretty --",
"git add"
],
".circleci/config.yml": [
"npm run lint:circleci"
]
}
}