-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 981 Bytes
/
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
{
"name": "ts-toolbox",
"version": "0.0.1",
"keywords": [
"typescript",
"react",
"redux",
"apollo-client",
"rekit"
],
"main": "./bin/ts-toolbox",
"bin": {
"ts-tool-belt": "./lib/index.js"
},
"author": "Marian Palkus <[email protected]>",
"description": "Command line tool to manage actions, reducers, components and apollo queries/mutations.",
"license": "MIT",
"scripts": {
"test": "jest",
"postinstall": "tsc"
},
"dependencies": {
"@types/jest": "^20.0.6",
"@types/node": "^8.0.19",
"colors": "^1.1.2",
"diff": "^3.3.0",
"jest": "^20.0.4",
"prompt": "^1.0.0",
"ts-jest": "^20.0.10",
"typescript": "^2.4.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}