-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
37
38
{
"name": "f2e-test-kits",
"version": "1.0.0",
"description": "Common front-end test kits.",
"repository": "https://github.com/o0y0o/f2e-test-kits",
"author": "Jason Chung",
"license": "MIT",
"private": true,
"scripts": {
"ncu": "ncu && lerna exec ncu",
"format": "lerna run format",
"lint": "lerna run lint",
"test": "lerna run test",
"test:ck": "lerna exec --scope @0y0/cucumber-kits -- yarn test",
"build": "lerna run build",
"ver": "lerna version --no-push && git tag | xargs git tag -d",
"pkg": "lerna publish from-package --yes"
},
"devDependencies": {
"@0y0/babel-preset-vanilla": "^1.1.2",
"@0y0/cucumber-kits": "link:./packages/cucumber-kits",
"@0y0/eslint-config-vanilla": "^1.2.3",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"prettier": "^2.2.1"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"eslintConfig": {
"extends": "@0y0/vanilla"
}
}