-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.93 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
60
61
62
63
64
{
"name": "@alwaysai/alwayscli",
"description": "A library for building command-line interfaces",
"version": "0.3.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rimraf lib packages coverage",
"build:clean": "npm run clean && npm run build",
"build:watch": "tsc --project . --watch",
"examples": "ts-node examples/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && npm run test:unit && npm run build:clean && npm run examples -- echo ok",
"test:unit": "jest --coverage --testPathPattern='./tests/'",
"test:watch": "npm run test:unit -- --watch",
"preversion": "npm test",
"postversion": "npm publish",
"publish:major": "git push && git tag -f major && git push -f origin major && git tag -d major",
"publish:minor": "git push && git tag -f minor && git push -f origin minor && git tag -d minor",
"publish:patch": "git push && git tag -f patch && git push -f origin patch && git tag -d patch"
},
"dependencies": {
"chalk": "4.1.2",
"read-pkg-up": "7.0.1",
"redent": "3.0.0"
},
"devDependencies": {
"@alwaysai/eslint-config": "^0.1.3",
"@alwaysai/tsconfig": "0.0.1",
"@carnesen/coded-error": "0.4.0",
"@carnesen/run-and-catch": "^0.4.3",
"@types/jest": "^29.5.12",
"@types/node": "17.0.30",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "4.6.4"
},
"keywords": [
"typescript",
"nodejs",
"cli",
"command",
"line",
"interface"
],
"author": {
"name": "alwaysAI, Inc.",
"email": "contact@alwaysai.co"
},
"repository": "github:alwaysai/alwayscli",
"homepage": "https://alwaysai.co",
"license": "SEE LICENSE IN LICENSE"
}