-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.25 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.25 KB
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
{
"private": true,
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.37.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-mocha": "^11.2.0",
"eslint-plugin-prettier": "^5.5.4",
"glob": "^11.0.3",
"husky": "^9.1.7",
"lerna": "^9.0.0",
"lint-staged": "^16.2.3",
"typescript-eslint": "^8.45.0"
},
"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",
"prepare": "husky",
"publish": "lerna publish from-git --yes",
"lint:check": "eslint",
"lint:fix": "eslint --fix",
"lint:staged": "npx lint-staged",
"test": "lerna run test",
"test:16": "lerna run test:16",
"test:legacy": "lerna run test:legacy",
"version": "lerna version"
},
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"demo/*"
],
"nohoist": [
"**/browserify",
"**/browserify/**"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}