forked from ryansolid/dom-expressions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.73 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
{
"name": "dom-expressions-build",
"description": "A Fine-Grained Runtime for Performant DOM Rendering",
"version": "0.36.0",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryansolid/dom-expressions"
},
"private": true,
"scripts": {
"postinstall": "lerna bootstrap --no-ci",
"clean": "pnpm run clean:artifacts && pnpm run clean:packages && pnpm run clean:root",
"clean:artifacts": "lerna run clean --parallel",
"clean:packages": "lerna clean --yes",
"clean:root": "rimraf node_modules",
"test": "lerna run test --concurrency=1 --stream",
"test:coverage": "lerna run test:coverage --parallel",
"build": "lerna run build --concurrency=1 --stream",
"publish:release": "lerna run build && lerna publish",
"report:coverage": "lerna run report:coverage --parallel",
"bootstrap": "lerna bootstrap",
"init": "pnpm install && pnpm run bootstrap"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "24.0.0",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@types/jest": "^29.2.5",
"babel-jest": "^29.3.1",
"babel-plugin-tester": "^10.1.0",
"babel-plugin-transform-rename-import": "^2.3.0",
"coveralls": "^3.1.1",
"jest": "~29.3.1",
"jest-resolve": "^29.3.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^21.0.0",
"lerna": "^6.4.0",
"rimraf": "^3.0.2",
"rollup": "^3.9.1",
"rollup-plugin-cleanup": "^3.2.1",
"s-js": "0.4.9",
"typescript": "~4.9.4"
}
}