-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.34 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
{
"license": "ISC",
"version": "3.6.0",
"name": "@arcaelas/command",
"homepage": "https://github.com/arcaelas/command",
"description": "If you are one of those who like to use terminals, you can create your own native commands using \"command\".",
"keywords": [
"command",
"cmd",
"arcaelas",
"@arcaelas",
"framework",
"terminal",
"console",
"logger"
],
"repository": {
"type": "git",
"url": "https://github.com/arcaelas/command.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/arcaelas/command/issues"
},
"main": "build/index.js",
"files": [
"build/",
"*.md",
"*.json"
],
"author": {
"name": "Arcaelas Insiders",
"email": "[email protected]",
"url": "https://github.com/arcaelas"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "yarn build && jest",
"build": "tsc && node esbuild.js",
"commit": "npm publish --access=public",
"prepublishOnly": "yarn test",
"postpublish": "rm -rf build"
},
"jest": {
"testPathIgnorePatterns": [
"test/*.ts"
]
},
"dependencies": {
"@arcaelas/utils": "^1.47.2",
"@types/inquirer": "^8.0.0",
"colors": "^1.4.0",
"inquirer": "^8.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"esbuild": "^0.17.18",
"jest": "^29.5.0",
"typescript": "^5.0.4"
}
}