-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
{
"name": "redoodle",
"version": "2.6.1",
"description": "An addon library for Redux that enhances its integration with TypeScript.",
"module": "lib-esm/index.js",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "find src -type f | xargs tslint -c tslint.json",
"prepare": "yarn clean && yarn build",
"test": "jest",
"build": "yarn build-es5 && yarn build-esm",
"build-es5": "tsc -p tsconfig.json",
"build-esm": "tsc -p tsconfig-esm.json",
"clean": "rm -rf lib/ lib-esm/",
"docs:clean": "rm -rf _book/",
"docs:prepare": "gitbook install",
"docs:build": "yarn docs:prepare && gitbook build -g palantir/redoodle",
"docs:watch": "yarn docs:prepare && gitbook serve -g palantir/redoodle",
"docs:publish": "yarn docs:clean && yarn docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:palantir/redoodle gh-pages --force",
"prettier:write": "prettier --write \"src/**/*\""
},
"dependencies": {
"tslib": "^1.8.1"
},
"devDependencies": {
"@types/jest": "^19.2.2",
"gitbook-cli": "^2.3.0",
"jest": "^19.0.2",
"prettier": "^2.0.5",
"redux": "^4.0.5",
"ts-jest": "^19.0.13",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^4.0.0",
"typescript": "^3.8.3"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"testRegex": "/__tests__/.*\\.spec\\.ts$",
"moduleFileExtensions": [
"js",
"ts"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/palantir/redoodle.git"
},
"license": "Apache-2.0",
"keywords": [
"redux",
"typescript",
"typed",
"redoodle",
"action",
"reducer",
"compound",
"logging"
]
}