-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"private": true,
"name": "npm-bananass",
"version": "0.0.0",
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=20.18.0"
},
"workspaces": [
"examples/*",
"packages/*",
"tests/*",
"website"
],
"scripts": {
"prepare": "husky",
"publish-package": "npx lerna publish from-package --pre-dist-tag canary --yes",
"build": "npx lerna run build",
"test": "npx lerna run test",
"coverage": "npx c8 --reporter=lcov npm run test",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "npx eslint",
"lint:prettier": "npx prettier . --check",
"lint:editorconfig": "npx editorconfig-checker -config .editorconfig-checker.json",
"lint:markdownlint": "npx markdownlint **/*.md",
"lint:textlint": "npx textlint -f pretty-error **/*.md",
"fix": "concurrently \"npm:fix:*\"",
"fix:eslint": "npx eslint --fix",
"fix:prettier": "npx prettier . --write",
"examples:solutions-bananass:build": "npm run bananass:build -w examples/solutions-bananass -- 1000"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"c8": "^10.1.3",
"concurrently": "^9.1.0",
"editorconfig-checker": "^6.0.1",
"eslint": "^9.17.0",
"eslint-config-bananass": "^0.0.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"markdownlint-cli": "^0.43.0",
"prettier": "^3.4.1",
"prettier-config-bananass": "^0.0.0",
"textlint": "^14.3.0",
"textlint-rule-allowed-uris": "^1.0.6",
"typescript": "^5.7.2"
}
}