-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "@clearcodehq/openrtb",
"description": "Library with OpenRTB spec types which allows to build and validate OpenRTB objects",
"version": "1.0.1",
"author": "Clearcode (https://clearcode.cc)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ClearcodeHQ/openrtb.git"
},
"license": "MIT",
"keywords": [
"openrtb",
"real",
"time",
"bidding",
"advertising"
],
"bug": {
"url": "https://github.com/ClearcodeHQ/openrtb/issues"
},
"homepage": "https://github.com/ClearcodeHQ/openrtb",
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc",
"lint": "eslint src",
"ci": "yarn lint && yarn build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-compat": "^3.13.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
}
}