-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
91 lines (91 loc) · 2.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "anx-api",
"version": "8.0.4",
"description": "AppNexus Api Wrapper",
"homepage": "https://github.com/appnexus/anx-api",
"bugs": "https://github.com/appnexus/anx-api/issues",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md"
],
"repository": {
"type": "git",
"url": "https://github.com/appnexus/anx-api.git"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf coverage && rm -rf lib && mkdir lib",
"cover": "jest src --coverage",
"dependency-check": "npm audit --production",
"lint": "eslint --ext .js,.ts src",
"lint-fix": "eslint --ext .js,.ts src --fix",
"preversion": "npm run build",
"test": "jest src",
"watch": "jest src --watch"
},
"keywords": [
"AppNexus"
],
"author": "Tim Santeford",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"axios": "1.7.8",
"lodash": "^4.17.15",
"qs": "^6.10.3",
"url-join": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.28",
"@types/qs": "^6.9.5",
"@types/url-join": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"coveralls": "^3.1.0",
"eslint": "^8.19.0",
"eslint-config-appnexus": "^7.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.7.0",
"nock": "^13.0.7",
"prettier": "^2.5.1",
"ts-jest": "^29.2.5",
"typescript": "^4.7.4"
},
"jest": {
"verbose": false,
"testEnvironment": "node",
"coverageDirectory": "../coverage/",
"collectCoverageFrom": [
"**/*.js",
"**/*.ts"
],
"coverageReporters": [
"html"
],
"rootDir": "src",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|js)$",
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}