forked from BedrockStreaming/i18n-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 797 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
{
"name": "i18-tools",
"version": "0.1.0",
"description": "M6 WEB`s i18n packages",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@m6web/eslint-plugin": "2.0.0",
"coveralls": "^3.1.0",
"eslint-plugin-monorepo": "^0.3.2",
"lerna": "^4.0.0"
},
"scripts": {
"lint": "eslint packages/**/src/**/*.js packages/**/tests/**/*.js",
"build": "yarn lerna run build --stream",
"prepack": "yarn lerna run prepack --stream",
"test": "yarn lerna run test --stream",
"test:ci": "yarn jest --coverage && yarn --cwd packages/eslint-plugin-i18n mocha --recursive tests",
"release": "yarn lerna version --conventional-commits --create-release github",
"lerna:publish": "yarn lerna publish from-git"
}
}