-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
48 lines (48 loc) · 965 Bytes
/
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
{
"name": "func",
"version": "1.3.4",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"test": "ava",
"build": "tsc",
"docs": "cd docs && vercel",
"release": "yarn build && yarn publish --access public --non-interactive"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"command",
"cli-framework",
"command-line-tool"
],
"repository": {
"type": "git",
"url": "git+https://github.com/unix/func.git"
},
"prettier": "@geist-ui/prettier-config",
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"devDependencies": {
"@geist-ui/prettier-config": "^1.0.1",
"@types/node": "^17.0.15",
"ava": "^4.0.1",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"arg": "^5.0.1",
"reflect-metadata": "^0.1.13"
}
}