-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.12 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"license": "GPL",
"engines": {
"node": ">=0.10"
},
"private": true,
"scripts": {
"clean": "git clean -dfqX -- ./node_modules **/{dist,node_modules}/ ./packages/*/tsconfig*tsbuildinfo ./coverage .eslintcache",
"build": "tsc --build tsconfig.build.json",
"local:build": "npm run build && npm run lint && npm run test",
"build:clean": "tsc --build tsconfig.build.json --clean",
"watch": "tsc --build tsconfig.build.json --watch",
"postinstall": "lerna run prepare && npm run build",
"test": "jest --verbose",
"test:clean": "jest --clearCache",
"test:watch": "jest --verbose --watchAll",
"coverage": "npm test -- --coverage",
"lint": "eslint . --cache --ext js,jsx,ts,tsx,md",
"lint:prettier": "prettier '**/*.{md,yml,yaml}' --write --ignore-path .gitignore",
"commit": "git-cz",
"pretty-quick": "pretty-quick",
"prettify:fix": "prettier --write 'packages/**/*.{js,ts}'",
"prettify": "prettier --check 'packages/**/*.{js,ts}'",
"publish:canary": "yarn build && lerna publish --canary --force-publish=@cabiri/sls-env,@cabiri/sls-aws",
"publish:ci:patch": "yarn build && lerna publish patch --create-release github --conventional-commits",
"publish:ci:minor": "yarn build && lerna publish minor --create-release github --conventional-commits"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "^26.0.4",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"codecov": "^3.7.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"jest-config": "^27.0.6",
"jest-extended": "^0.11.5",
"lerna": "^4.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"ts-jest": "^27.0.3",
"typescript": "^4.1.3"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
},
"version": "0.0.0"
}