-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.26 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
{
"name": "drawbridge",
"version": "0.1.1",
"description": "",
"main": "dist/index.js",
"bin": {
"drawbridge": "startup/drawbridge"
},
"scripts": {
"test": "jest",
"start": "startup/drawbridge",
"build": "tsc",
"prepublishOnly": "npm i && npm run build"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/jest": "23.3.2",
"chai": "4.1.2",
"chalk": "2.3.0",
"fs-extra": "5.0.0",
"jest": "23.6.0",
"klaw": "2.1.1",
"ora": "1.3.0",
"ramda": "0.25.0",
"rc": "1.2.5",
"redux": "3.7.2",
"redux-saga": "0.16.0",
"source-map-support": "0.5.4",
"ts-jest": "23.1.4",
"tslint": "5.9.1"
},
"devDependencies": {
"@types/chai": "4.1.0",
"@types/es6-promise": "3.3.0",
"@types/klaw": "2.1.1",
"@types/ora": "1.3.1",
"@types/ramda": "0.25.14",
"@types/rc": "0.0.1",
"@types/redux-saga": "0.10.5",
"ts-node": "4.1.0",
"tslint-config-prettier": "1.6.0",
"typescript": "2.6.2"
}
}