This repository has been archived by the owner on Jul 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "htmljs",
"version": "1.0.0",
"private": true,
"main": "packages/core/src/index.js",
"workspaces": [
"packages/*"
],
"description": "Create html in pure JavaScript!",
"keywords": [
"html",
"css",
"javascript",
"render",
"metroui",
"metro4",
"metro5",
"bootstrap"
],
"author": "Serhii Pimenov <[email protected]> (https://pimenov.com.ua)",
"license": "MIT",
"scripts": {
"test": "lerna run test --stream",
"test:html": "lerna --scope @htmljs/html exec -- npm run test",
"update:version": "lerna version --no-push",
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "lerna run build --stream",
"build:html": "lerna --scope @htmljs/html exec -- npm run build",
"build:metro4": "lerna --scope @htmljs/metro4 exec -- npm run build",
"publish": "lerna publish"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/runtime": "^7.13.10",
"@rollup/plugin-babel": "^5.3.0",
"babel-loader": "^8.2.2",
"eslint": "^7.22.0",
"glob": "^7.1.6",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.41.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.17",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2"
}
}