-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.31 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
{
"name": "connect-ts-api",
"version": "4.7.2",
"main": "lib/connect.js",
"typings": "lib/connect",
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json --project tsconfig.json",
"test": "jest",
"test-alone": "nyc ava",
"jest-codemods": "jest-codemods"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/test/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
},
"files": [
"lib/"
],
"description": "Connect API in TypeScript",
"keywords": [
"spotware",
"connect",
"ctratder"
],
"author": "Spotware Services <[email protected]>",
"private": false,
"dependencies": {
"hat": "0.0.3"
},
"peerDependencies": {
"rxjs": "^5.6.0-forward-compat || ^6",
"@spotware/connection-adapter": "^1.8"
},
"devDependencies": {
"@types/jest": "20.0.5",
"@types/node": "6.0.58",
"babel-jest": "^23.4.2",
"connection-adapter": "spotware/connection-adapter#v1.8.4",
"husky": "0.13.1",
"jest": "^23.4.2",
"jest-cli": "^24.5.0",
"nyc": "10.1.2",
"rxjs": "5.6.0-forward-compat.5",
"ts-jest": "^23.1.4",
"tslint": "3.15.1",
"typescript": "^3.3.3333"
}
}