-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
61 lines (61 loc) · 1.85 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
61
{
"name": "boxrec",
"version": "8.0.5",
"description": "Retrieve information from BoxRec and return it in JSON format",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc && npm run minify",
"minify": "uglifyjs-folder ./dist -eo ./dist -x .js --config './uglify.json'",
"generate-docs": "typedoc --out ./docs --includes ./src --mode file --excludeExternals --excludePrivate --exclude \"**/*+(index|.spec|.e2e).ts\"",
"prepublish": "npm run snyk-protect && npm run build",
"start": "tsc -w",
"snyk-protect": "snyk protect",
"test": "jest --config jest.config.json",
"test:coverage": "yarn test --coverage",
"test:coverage:watch": "yarn test:coverage --watchAll",
"test:watch": "yarn test --watchAll",
"test-e2e": "jest --config jest.config.e2e.json --runInBand --bail",
"test-e2e:coverage": "npm run test-e2e --coverage",
"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"
},
"keywords": [
"boxrec",
"boxing"
],
"jest": {
"testEnvironment": "node"
},
"license": "MIT",
"devDependencies": {
"@snyk/cli-interface": "^2.3.0",
"@types/cheerio": "^0.22.7",
"@types/jest": "^22.1.1",
"@types/node": "^12.12.5",
"coveralls": "^3.0.0",
"jest": "<23",
"ts-jest": "<23.10.0",
"tslint": "^5.10.0",
"typedoc": "^0.14.2",
"typescript": "^3.7.0",
"uglifyjs-folder": "^1.5.1"
},
"bugs": {
"url": "https://github.com/boxing/boxrec/labels/bug"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/boxing/boxrec"
},
"dependencies": {
"boxrec-requests": "6.0.2",
"cheerio": "^1.0.0-rc.2",
"snyk": "^1.685.0"
},
"snyk": true
}