forked from ryansolid/dom-expressions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.61 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
{
"name": "dom-expressions-build",
"description": "A Fine-Grained Runtime for Performant DOM Rendering",
"version": "0.31.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": "npm run clean:artifacts && npm run clean:packages && npm 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"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.1.1",
"@types/jest": "^26.0.22",
"babel-jest": "^26.6.3",
"babel-plugin-tester": "^10.1.0",
"babel-plugin-transform-rename-import": "^2.3.0",
"coveralls": "^3.1.1",
"jest": "~26.6.3",
"jest-ts-webcompat-resolver": "^1.0.0",
"jsdom": "^19.0.0",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-cleanup": "^3.2.1",
"s-js": "0.4.9",
"typescript": "~4.5.4"
}
}