forked from adaltas/node-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 848 Bytes
/
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
{
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@commitlint/config-lerna-scopes": "^17.2.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.2",
"lerna": "^6.0.3"
},
"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",
"test": "lerna run test",
"test:legacy": "lerna run test:legacy",
"version": "lerna version"
},
"workspaces": {
"packages": [
"packages/*",
"demo/*"
],
"nohoist": [
"**/browserify",
"**/browserify/**"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}