-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "@comicrelief/serverless-cli-scripts",
"version": "0.1.0",
"description": "CLI scripts for Serverless Services",
"main": "src/runner.ts",
"repository": "[email protected]:comicrelief/serverless-cli-scripts.git",
"author": "Comic Relief",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"sideEffects": false,
"devDependencies": {
"@comicrelief/eslint-config": "^1.3.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.14.9",
"@types/prompts": "^2.0.9",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"jest": "^26.4.2",
"semantic-release": "^17.1.2",
"ts-jest": "^26.5.3",
"ts-node": "^9.0.0",
"typescript": "^4.1.0"
},
"scripts": {
"build:ts": "tsc",
"build:packaging": "cp package.json README.md LICENSE ./dist",
"build": "yarn build:ts && yarn build:packaging",
"lint": "yarn eslint .",
"test:cli": "ts-node ./tests/example-cli.ts",
"test:unit": "jest --colors",
"test:unit:coverage": "JEST_COLLECT_COVERAGE=1 jest --colors"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"consola": "^2.15.3",
"dotenv": "^8.2.0",
"prompts": "^2.4.0",
"yargs": "^16.2.0"
},
"release": {
"branches": [
"main"
]
}
}