-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.6 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
{
"name": "composite-reducer",
"description": "combine reducers based on individual properties",
"version": "1.0.0",
"author": "Tyler Han, Ben Teichman",
"bugs": {
"url": "https://github.com/voiceflow/composite-reducer/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.15",
"@types/mocha": "^9.0.0",
"@voiceflow/commitlint-config": "1.1.0",
"@voiceflow/eslint-config": "3.4.0",
"@voiceflow/git-branch-check": "1.2.0",
"@voiceflow/prettier-config": "1.0.5",
"@voiceflow/tsconfig": "1.1.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"chai": "^4.3.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"depcheck": "^1.4.2",
"eslint": "^7.20.0",
"eslint-output": "^3.0.1",
"fixpack": "^4.0.0",
"husky": "^4.3.8",
"istanbul": "^0.4.5",
"lint-staged": "^10.5.4",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"source-map-support": "^0.5.19",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "^4.4.2"
},
"files": [
"build/"
],
"homepage": "https://github.com/voiceflow/composite-reducer#readme",
"keywords": [
"combinedReducer",
"react",
"react-redux",
"reducer",
"redux",
"voiceflow"
],
"license": "ISC",
"main": "build/index.js",
"prettier": "@voiceflow/prettier-config",
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/composite-reducer.git"
},
"scripts": {
"build": "yarn clean && ttsc --project ./tsconfig.build.json --declaration",
"clean": "rimraf build",
"commit": "cz",
"eslint-output": "eslint-output",
"lint": "eslint '**/*.{js,ts}'",
"lint:output": "yarn run eslint-output --quiet \"**/*.{js,ts}\"",
"lint:quiet": "yarn lint --quiet",
"lint:report": "yarn lint:output",
"test": "yarn test:run",
"test:dependencies": "depcheck",
"test:integration": "NODE_ENV=test nyc --report-dir nyc_coverage_integration ts-mocha --paths --config ./config/test/.mocharc.yml 'test/**/*.it.ts'",
"test:run": "NODE_ENV=test nyc ts-mocha --paths --config ./config/test/.mocharc.yml 'test/**/*.{unit,it}.ts'",
"test:single": "NODE_ENV=test ts-mocha --paths --config ./config/test/.mocharc.yml",
"test:unit": "NODE_ENV=test nyc --report-dir=nyc_coverage_unit ts-mocha --paths --config ./config/test/.mocharc.yml 'test/**/*.unit.ts'"
},
"types": "build/index.d.ts"
}