-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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
{
"name": "balm-monorepo",
"description": "An universal front-end workflow for webapps",
"homepage": "https://balm.js.org",
"license": "MIT",
"author": {
"name": "Elf-mousE",
"email": "[email protected]",
"url": "http://elf-mouse.me"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balmjs/balm.git"
},
"scripts": {
"build": "gulp prepublish && rimraf packages/balm-core/tslib && tsc",
"test": "cross-env NODE_ENV=test TS_NODE_PROJECT=test/tsconfig.json TS_NODE_FILES=true nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "./scripts/clone-license.sh && ./scripts/release.sh",
"release:all": "./scripts/clone-license.sh && ./scripts/release-all.sh",
"release:canary": "./scripts/clone-license.sh && ./scripts/release-canary.sh"
},
"devDependencies": {
"@babel/core": "^7.26",
"@babel/plugin-transform-class-properties": "7.25",
"@babel/plugin-transform-object-rest-spread": "7.25",
"@babel/preset-env": "^7.26",
"@babel/preset-typescript": "^7.26",
"@babel/register": "^7.25",
"@commitlint/cli": "19",
"@commitlint/config-conventional": "19",
"@types/node": "20",
"@typescript-eslint/eslint-plugin": "8",
"@typescript-eslint/parser": "8",
"babel-plugin-istanbul": "7",
"chai": "5",
"coveralls": "3",
"cross-env": "7",
"del": "8",
"eslint": "9",
"eslint-config-prettier": "9",
"eslint-plugin-prettier": "5",
"esm": "3",
"gulp": "4",
"gulp-babel": "8",
"gulp-eslint": "6",
"gulp-exclude-gitignore": "1",
"husky": "9",
"lerna": "~8.0",
"lint-staged": "15",
"mocha": "10",
"nyc": "17",
"prettier": "3",
"rimraf": "6",
"ts-node": "10",
"typescript": "5"
},
"private": true,
"workspaces": [
"packages/*"
]
}