-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.9 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@carnesen/cli-examples",
"description": "Examples of how to use @carnesen/cli",
"version": "0.9.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"carnesen-cli-examples": "lib/cli.js"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"build:clean": "rm -rf lib/ && npm run build",
"build:watch": "npm run build:clean -- --watch",
"cli": "node lib/cli",
"dev": "ts-node src/cli",
"lint": "eslint --ext .ts src/",
"lint:fix": "npm run lint -- --fix",
"release": "carnesen-dev release --semverBump",
"test": "npm run lint && npm run unit-test && npm run build:clean && node lib/cli echo ok && ts-node src/multiply-command 2 3 4 && npm pack",
"type-check": "npm run build -- --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"unit-test": "jest src",
"unit-test:watch": "npm run unit-test -- --watch"
},
"dependencies": {
"@carnesen/cli": "0.9.0"
},
"devDependencies": {
"@carnesen/dev": "0.3.1",
"@carnesen/run-and-catch": "0.4.3",
"@carnesen/tsconfig": "0.5.0",
"@types/jest": "27.5.0",
"@types/node": "17.0.32",
"eslint": "8.15.0",
"eslint-config-carnesen": "11.0.0",
"jest": "28.1.0",
"ts-jest": "28.0.2",
"ts-node": "10.7.0",
"typescript": "4.6.4"
},
"files": [
"lib",
"src",
".eslintrc.json",
".npmrc",
"changelog.md",
"jest.config.js",
"license.md",
"package.json",
"readme.md",
"tsconfig.json"
],
"keywords": [
"typescript",
"nodejs",
"cli",
"command-line-interface"
],
"publishConfig": {
"access": "public",
"tag": "latest"
},
"author": {
"name": "Chris Arnesen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/carnesen/cli.git",
"directory": "packages/cli-examples"
},
"bugs": {
"url": "https://github.com/carnesen/cli/issues"
},
"homepage": "https://cli.carnesen.com",
"license": "MIT"
}