-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.05 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
{
"private": true,
"workspaces": [
"packages/fontagon",
"packages/fontagon-cli"
],
"scripts": {
"clean": "lerna clean",
"bootstrap": "lerna bootstrap",
"lint": "eslint --fix packages/**/*.js packages/**/bin/*",
"test:fontagon-core": "lerna run --scope fontagon test",
"test:fontagon-cli": "",
"test": "yarn lint && yarn test:fontagon-core",
"release": "yarn test && git push && lerna publish from-git"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"jest": "^25.3.0",
"lerna": "^3.20.2"
}
}