This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 2.02 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
{
"name": "@airgrid/edgekit",
"version": "0.0.0-dev.43",
"homepage": "https://edgekit.org/",
"author": "AirGrid <https://airgrid.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AirGrid/edgekit.git"
},
"description": "A privacy focused library for cookie-less audience creation.",
"keywords": [
"privacy",
"cookie-less",
"audiences",
"programmatic",
"edgekit",
"prebid"
],
"publishConfig": {
"access": "public"
},
"main": "dist/cjs/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"module": "dist/esm/src/index.js",
"unpkg": "dist/edgekit.umd.js",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist",
"compile": "run-p compile-esm compile-cjs",
"compile-esm": "tsc --module es6 --outDir dist/esm",
"compile-cjs": "tsc --module commonjs --outDir dist/cjs",
"build": "run-s clean compile",
"bundle": "microbundle --format umd,esm --name edkt -o dist/sdk/edgekit.min.js -i src/index.ts",
"watch": "tsc -w",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --config jest.unit.config.js",
"test:unit:watch": "jest --config jest.unit.config.js --watch",
"test:unit:coverage": "jest --coverage",
"test:e2e": "npm run bundle && jest --config jest.e2e.config.js",
"lint": "eslint src test --ext js,ts",
"lint:fix": "eslint src test --ext js,ts --fix"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest-playwright": "^0.2.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"jest-fetch-mock": "^3.0.3",
"jest-playwright-preset": "^1.4.4",
"microbundle": "^0.12.2",
"npm-run-all": "^4.1.5",
"playwright": "^1.7.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"tslib": "^2.1.0",
"typescript": "^3.9.5"
}
}