-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.44 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
{
"name": "prism",
"version": "1.0.0",
"description": "Prism functions",
"main": "dist/prism-sdk.js",
"module": "dist/prism-sdk.mjs",
"repository": {
"type": "git",
"url": "https://github.com/warnermedia/prism.git"
},
"license": "MIT",
"private": true,
"nohoist": [
"**/@babel/runtime"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist && rm -rf node_modules",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,ts,jsx,tsx,json,md}\""
},
"dependencies": {
"@segment/localstorage-retry": "^1.3.0",
"@segment/top-domain": "^3.0.0",
"uuid": "^8.3.1"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint"
],
"*.+(js|jsx|ts|tsx|json|md|css|yml|yaml)": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.16.0",
"@iabtcf/cmpapi": "^1.2.1",
"@iabtcf/core": "^1.2.1",
"@peculiar/webcrypto": "^1.1.2",
"@testing-library/jest-dom": "^5.11.9",
"@types/doubleclick-gpt": "^2019111201.0.0",
"@types/jest": "^26.0.24",
"@types/mocha": "^8.2.2",
"@types/sinon": "^9.0.5",
"@types/sinonjs__fake-timers": "^6.0.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-eslint": "^10.1.0",
"cpy-cli": "^4.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jest-extended": "^0.0.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-wdio": "^6.0.12",
"fetch-mock-jest": "^1.3.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-date-mock": "^1.0.8",
"jest-environment-jsdom": "^27.5.1",
"jest-extended": "^3.0.0",
"jest-when": "^3.1.0",
"lint-staged": "^10.2.13",
"mock-local-storage": "^1.1.17",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7",
"prettier": "^2.1.0",
"sinon": "^11.1.1",
"ts-jest": "^27.1",
"ts-mockito": "^2.6.1",
"tsup": "^6.5.0",
"typescript": "^4.3.2",
"wait-on": "^5.3.0"
}
}