-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "siren-nav",
"version": "2.0.1-rc.1",
"description": "A library for navigating Siren APIs",
"main": "lib/src/index.js",
"typings": "lib/src/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"test": "jest --runInBand"
},
"keywords": [
"siren",
"http"
],
"repository": {
"type": "git",
"url": "https://github.com/xogeny/siren-nav.git"
},
"author": "Michael M. Tiller",
"license": "MIT",
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/flat": "^0.0.28",
"@types/jest": "^24.0.12",
"@types/urijs": "^1.19.0",
"@types/ws": "^6.0.1",
"axios-mock-adapter": "^1.16.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^2.0.0",
"typescript": "3.7.2"
},
"dependencies": {
"axios": "^0.16.0",
"debug": "^3.1.0",
"flat": "^5.0.0",
"isomorphic-ws": "^5.0.0",
"rxjs": "^6.5.2",
"siren-types": "1.0.0-rc10",
"urijs": "^1.19.1"
}
}