-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "@stoplight/json-ref-readers",
"version": "0.0.0",
"description": "Set of utilities for reading external json references",
"files": [
"**/*"
],
"engines": {
"node": ">=8.3.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/stoplightio/json-ref-readers",
"bugs": "https://github.com/stoplightio/json-ref-readers/issues",
"author": "Stoplight <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/json-ref-readers.git"
},
"scripts": {
"build": "sl-scripts build",
"lint": "tslint -p .",
"lint.fix": "yarn lint --fix",
"release": "sl-scripts release",
"test": "jest",
"test.prod": "yarn lint && yarn test --coverage --no-cache",
"test.update": "yarn test --updateSnapshot"
},
"dependencies": {
"node-fetch": "^2.6.0",
"tslib": "^1.14.1"
},
"devDependencies": {
"@stoplight/scripts": "^8.2.1",
"@types/jest": "^24.0.18",
"@types/nock": "^11.1.0",
"@types/node-fetch": "^2.5.2",
"@types/urijs": "^1.19.9",
"jest": "^24.9.0",
"nock": "^11.7.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-stoplight": "^1.3.0",
"typescript": "^3.6.3",
"urijs": "^1.19.2"
},
"release": {
"extends": "@stoplight/scripts/release"
}
}