-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.83 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
{
"name": "@virtualstate/kdl",
"version": "1.0.4",
"main": "./esnext/index.js",
"module": "./esnext/index.js",
"types": "./esnext/index.d.ts",
"type": "module",
"sideEffects": false,
"keywords": [],
"exports": {
".": "./esnext/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/virtualstate/kdl.git"
},
"bugs": {
"url": "https://github.com/virtualstate/kdl/issues"
},
"homepage": "https://github.com/virtualstate/kdl#readme",
"author": "Fabian Cook <[email protected]>",
"license": "MIT",
"dependencies": {
"@virtualstate/focus": "^1.0.1",
"@virtualstate/promise": "^1.1.5",
"abort-controller": "^3.0.0",
"chevrotain": "^10.1.2",
"uuid": "^8.3.2",
"whatwg-url": "^9.1.0"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"@opennetwork/http-representation": "^3.0.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"@types/chance": "^1.1.3",
"@types/jest": "^27.0.1",
"@types/mkdirp": "^1.0.2",
"@types/node": "^17.0.1",
"@types/rimraf": "^3.0.2",
"@types/uuid": "^8.3.3",
"@types/whatwg-url": "^8.2.1",
"@virtualstate/dom": "^2.46.0",
"@virtualstate/examples": "^2.46.0",
"@virtualstate/fringe": "^2.46.1",
"@virtualstate/hooks": "^2.46.0",
"@virtualstate/hooks-extended": "^2.46.0",
"@virtualstate/union": "^2.46.0",
"@virtualstate/x": "^2.46.0",
"c8": "^7.12.0",
"chance": "^1.1.8",
"cheerio": "^1.0.0-rc.10",
"core-js": "^3.17.2",
"dom-lite": "^20.2.0",
"filehound": "^1.17.4",
"jest": "^27.1.0",
"jest-playwright-preset": "^1.7.0",
"mkdirp": "^1.0.4",
"playwright": "^1.17.1",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-ignore": "^1.0.10",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.7.4",
"urlpattern-polyfill": "^1.0.0-rc2",
"v8-to-istanbul": "^8.1.0"
},
"scripts": {
"build": "rm -rf esnext && tsc",
"postbuild": "mkdir -p coverage && node scripts/post-build.js",
"generate": "yarn build && yarn test:generate",
"test:generate": "node esnext/tests/resources/generate.js",
"prepublishOnly": "npm run build",
"test": "yarn build && yarn test:generate && node --enable-source-maps esnext/tests/index.js",
"test:deno": "yarn build && deno run --allow-read --allow-net --import-map=import-map-deno.json esnext/tests/index.js",
"test:deno:r": "yarn build && deno run -r --allow-read --allow-net --import-map=import-map-deno.json esnext/tests/index.js",
"test:inspect": "yarn build && node --enable-source-maps --inspect-brk esnext/tests/index.js",
"coverage": "yarn build && c8 node esnext/tests/index.js && yarn postbuild"
}
}