-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 893 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
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.14.3",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@citation-js/core": "^0.6.0",
"conventional-changelog-cli": "^2.1.1",
"dotenv": "^16.0.1",
"eslint-plugin-vuln-regex-detector": "^1.0.4",
"lerna": "^6.6.1",
"mocha": "^10.0.0",
"standard": "^17.0.0"
},
"scripts": {
"lint": "standard",
"test": "lerna run test",
"build": "lerna run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"preversion": "npm run lint && npm run test",
"version": "npm run changelog",
"prepublishOnly": "npm run build"
},
"standard": {
"parser": "@babel/eslint-parser"
},
"workspaces": [
"packages/*"
]
}