-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"name": "boxrec-requests",
"version": "6.1.0",
"description": "make API requests to BoxRec using NodeJS and returns the HTML body",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepublish": "yarn run snyk-protect && snyk protect && yarn build",
"build": "tsc",
"test:coveralls": "snyk test && jest --config jest.config.json --coverage && cat ./coverage/lcov.info | coveralls",
"test-e2e": "jest --config jest.config.e2e.json --runInBand --bail",
"test-coverage-watch": "jest --config jest.config.json --coverage --watchAll",
"test-watch": "jest --config jest.config.json --watchAll",
"tslint": "tslint -c tslint.json src/**/*.ts",
"snyk-protect": "snyk protect"
},
"keywords": [
"boxrec",
"boxing"
],
"jest": {
"testEnvironment": "node"
},
"license": "MIT",
"devDependencies": {
"@types/cheerio": "^0.22.7",
"@types/form-data": "^2.5.0",
"@types/jest": "^22.1.1",
"@types/node-fetch": "^2.6.1",
"coveralls": "^3.0.0",
"jest": "23.0.1",
"json-loader": "^0.5.7",
"ts-jest": "^22.0.3",
"ts-loader": "4.3.0",
"ts-node": "^8.1.0",
"tslint": "^5.10.0",
"tslint-loader": "^3.5.3",
"typescript": "4.5.5"
},
"files": [
"/dist"
],
"bugs": {
"url": "https://github.com/boxing/boxrec-requests/labels/bug"
},
"repository": {
"type": "git",
"url": "https://github.com/boxing/boxrec-requests"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"form-data": "^4.0.0",
"node-fetch": "2",
"snyk": "^1.883.0"
},
"snyk": true
}