-
Notifications
You must be signed in to change notification settings - Fork 268
/
package.json
47 lines (47 loc) · 1.04 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
{
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"cz-conventional-changelog": "^3.3.0",
"glob": "^11.0.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10"
},
"lint-staged": {
"*.js": "npm run lint:fix",
"*.md": "prettier -w"
},
"repository": {
"type": "git",
"url": "https://github.com/adaltas/node-csv.git"
},
"scripts": {
"build": "lerna run build",
"postinstall": "husky install",
"publish": "lerna publish from-git --yes",
"lint:check": "lerna run lint:check",
"lint:fix": "eslint --fix",
"lint:staged": "npx lint-staged",
"test": "lerna run test",
"test:legacy": "lerna run test:legacy",
"version": "lerna version"
},
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"demo/*"
],
"nohoist": [
"**/browserify",
"**/browserify/**"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}