-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.85 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
{
"name": "reducer-assistant",
"version": "0.6.0",
"description": "Library to create async action controllers for reducers",
"main": "dist/index.js",
"module": "dist-es/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && tsc -p tsconfig.es.json",
"version": "npm test && npm run build && conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"commit": "git-cz",
"test": "npm run unit-test && npm run type-test",
"unit-test": "ts-node node_modules/tape/bin/tape ./src/**/*.spec.ts",
"type-test": "tsd",
"tape": "ts-node node_modules/tape/bin/tape",
"w": "nodemon -e js,jsx,ts,tsx,json --exec npm run"
},
"keywords": [
"redux",
"middleware",
"reducer",
"sideEffects"
],
"author": "megazazik <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/sinon": "^9.0.0",
"@types/tape": "^4.2.34",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.0.34",
"cz-conventional-changelog": "^3.0.2",
"encaps": "^0.8.1",
"nodemon": "^2.0.4",
"redux": "^4.0.0",
"sinon": "^9.0.2",
"tape": "^4.13.2",
"ts-node": "^8.8.1",
"tsd": "^0.17.0",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/megazazik/reducer-assistant.git"
},
"homepage": "https://github.com/megazazik/reducer-assistant",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {},
"files": [
"dist",
"dist/index.d.ts",
"dist-es",
"CHANGELOG.md",
"README.md",
"redux"
],
"tsd": {
"directory": "src/tests-d",
"compilerOptions": {
"strict": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true
}
},
"sideEffects": false
}