-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
{
"name": "@virtualstate/x-monorepo",
"description": "Virtual state runtime",
"version": "0.0.0",
"workspaces": {
"packages": [
"packages/*"
]
},
"keywords": [
"nodejs",
"web",
"frontend",
"backend",
"jsx",
"vsx",
"state",
"virtual-state"
],
"license": "MIT",
"type": "module",
"scripts": {
"clean": "yarn workspaces run clean",
"test": "yarn jest",
"build": "tsc -b ./tsconfig.repo.json && yarn build:post",
"build:post": "node post-build.js",
"release": "yarn examples:build && yarn publish",
"lerna:publish": "lerna publish from-package --yes",
"version:patch": "lerna version patch --force-publish --yes",
"version:minor": "lerna version minor --force-publish --yes",
"version:major": "lerna version major --force-publish --yes",
"examples:log": "yarn build && node packages/examples/lib/log.js",
"examples:build": "yarn build && yarn examples:build:run && yarn build",
"examples:build:run": "node packages/examples/lib/build.js",
"examples:build:coverage": "c8 yarn examples:build:run",
"coverage": "yarn examples:build:coverage",
"coverage:post": "yarn build:post"
},
"private": true,
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.6.0",
"babel-jest": "^27.0.2",
"c8": "^7.10.0",
"commander": "^7.2.0",
"csv-parser": "^3.0.0",
"dom-lite": "^20.2.0",
"domexception": "^2.0.1",
"eslint": "^7.27.0",
"filehound": "^1.17.4",
"isomorphic-fetch": "^3.0.0",
"iterable": "^5.7.0",
"jest": "^26.6.3",
"jest-coverage-badges": "^1.1.2",
"jsdom": "^16.6.0",
"lerna": "^4.0.0",
"microtask-collector": "^3.1.0",
"minimist": "^1.2.5",
"node-fetch": "^2.6.1",
"prettier": "^2.3.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.6.0-dev.20211208"
},
"repository": {
"type": "git",
"url": "git+https://github.com/virtualstate/x.git"
},
"bugs": {
"url": "https://github.com/virtualstate/x/issues"
},
"homepage": "https://github.com/virtualstate/x#readme",
"author": "Fabian Cook <hello@fabiancook.dev>"
}