-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
61 lines (61 loc) · 1.76 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": "arcads",
"version": "6.2.0",
"description": "ArcAds is a GPT wrapper created by Arc XP with publishers in mind.",
"main": "dist/arcads.js",
"files": [
"dist/arcads.js"
],
"scripts": {
"test": "jest --config jest.config.js --no-cache --coverage",
"build": "rm -rf dist && webpack --env production --mode development",
"dev": "rm -rf dist && webpack --env development --mode development --watch",
"docs": "rm -rf docs && ./node_modules/.bin/esdoc && open docs/index.html",
"debug": "node debugging.js",
"mock": "webpack-dev-server --progress --hot --inline && npm run test",
"lint": "eslint --config .eslintrc.js ./src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/washingtonpost/arcads.git"
},
"keywords": [
"ads",
"advertisements",
"dfp",
"gpt",
"prebid",
"amazon",
"headerbidding",
"hb"
],
"author": "Arc",
"license": "MIT",
"bugs": {
"url": "https://github.com/washingtonpost/arcads/issues"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-loader": "^8.2.2",
"babel-plugin-root-import": "^5.1.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-import": "^2.8.0",
"eslint-webpack-plugin": "^3.0.1",
"jest": "^27.1.0",
"terser-webpack-plugin": "^5.1.4",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"anylogger": "^1.0.11",
"anylogger-console": "^1.0.0",
"promise-polyfill": "^8.2.0"
},
"homepage": "https://github.com/washingtonpost/arcads#readme"
}