-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.24 KB
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
{
"name": "trkm",
"version": "0.0.1",
"description": "Contains tracking madness support projects.",
"keywords": [
"Tracking Madness, URL Parameters, Headers, Local Storage, Typescript"
],
"author": {
"name": "Eric Hosick",
"email": "erichosick@gmail.com",
"url": "https://github.com/erichosick"
},
"contributors": [],
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"homepage": "https://github.com/erichosick/trkm",
"bugs": {
"url": "https://github.com/erichosick/trkm/issues",
"email": "erichosick@gmail.com"
},
"scripts": {
"build": "yarn lerna run build",
"build:watch": "yarn lerna run build:watch",
"develop": "yarn lerna run develop",
"test:unit": "yarn build && jest --config=./jest.unit.config.ts",
"test:unit:watch": "yarn build && jest --config=./jest.unit.config.ts --watch --coverage --verbose",
"test:unit:watch:no-coverage": "jest --config=./jest.unit.config.ts --watch --verbose",
"test:integration": "jest --config=./jest.unit.config.ts && yarn lerna run test:browsers",
"test:browsers": "yarn lerna run test:browsers",
"test:browsers:watch": "yarn lerna run test:browsers:watch",
"publish:all": "yarn test:integration && yarn build && yarn lerna publish",
"lerna:create": "yarn lerna create -y",
"tsc": "echo \"You probably don't want to run tsc at the root of this mono-repo. It creates maps and types for every ts file!\""
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@inrupt/jest-jsdom-polyfills": "^1.3.1",
"@types/jest": "^29.1.2",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.11.3",
"@types/uuid": "^8.3.4",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.2",
"jsdom": "^20.0.1",
"jsdom-worker": "^0.3.0",
"lerna": "^5.6.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"uuid": "^9.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}