-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 KB
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
{
"name": "@powerkernel/sls-utils",
"version": "1.1.1",
"main": "lib/",
"types": "lib/",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint . --ext .ts --fix",
"build": "shx rm -rf lib/ && tsc",
"test": "jest",
"push": "git push origin --tags && git push origin",
"version": "auto-changelog -p && git add CHANGELOG.md",
"release:patch": "npm version patch && npm run gitpush",
"release:minor": "npm version minor && npm run gitpush",
"release:major": "npm version major && npm run gitpush",
"gitpush": "git push origin --tags && git push origin"
},
"publishConfig": {
"access": "public"
},
"jest": {
"testRegex": "/test/.*\\.test\\.ts$",
"collectCoverage": true,
"preset": "ts-jest"
},
"keywords": [
"power",
"utils",
"serverless"
],
"author": "Harry Tang <harry@powerkernel.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:powerkernel/sls-utils.git"
},
"bugs": {
"url": "https://github.com/powerkernel/sls-utils/issues"
},
"homepage": "https://github.com/powerkernel/sls-utils",
"description": "Power Kernel utils for serverlesss",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"auto-changelog": "^1.16.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"jest": "^25.1.0",
"shx": "^0.3.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.7.0",
"typescript": "^3.8.3"
},
"dependencies": {}
}