forked from domxjs/domx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.05 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.05 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
65
66
67
68
69
70
71
72
{
"name": "domx",
"version": "1.2.0",
"license": "MIT",
"author": "John Horback",
"description": "A mono repo containing packages with common web application script utilities.",
"keywords": [
"Custom Elements"
],
"repository": {
"type": "git",
"url": "https://github.com/domxjs/domx.git"
},
"main": "index.js",
"types": "index.d.ts",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "vite",
"build": "tsc --build && vite build && npm outdated --workspaces",
"clean": "tsc --build --clean",
"test": "tsc --build && jest",
"test:no-cache": "tsc --build && jest --no-cache",
"test:watch": "tsc --build && jest --watch",
"test:coverage": "tsc --build && jest --coverage --collectCoverageFrom=\"./packages/**/!(*.d).ts\"",
"badges": "node ./src/scripts/badges.js",
"publish:all": "npm publish --access public --workspaces",
"prepare": "npm run build",
"test:package": "jest --coverage --coverage-directory=\"./packages/StateController/.coverage\" --collectCoverageFrom=\"./packages/StateController/**/!(*.d).ts\" \"./packages/StateController\""
},
"dependencies": {
"@domx/dataelement": "1.0.0",
"@domx/router": "1.0.1",
"@domx/statecontroller": "0.1.0",
"@vanillawc/wc-markdown": "^1.6.10",
"immer": "9.0.16",
"lit": "2.4.1"
},
"devDependencies": {
"@types/jest": "29.2.3",
"@types/node": "^18.16.3",
"istanbul-badges-readme": "1.8.2",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"ts-jest": "29.0.3",
"ts-lit-plugin": "1.2.1",
"ts-node": "10.9.1",
"typescript": "4.9.3",
"vite": "3.2.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(js|ts)$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(@lit|lit|lit-html|lit-element|reactive-element))"
],
"coverageDirectory": ".coverage",
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"modulePathIgnorePatterns": [
"npm-cache",
".npm"
]
}
}