-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 780 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 780 Bytes
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
{
"name": "fncli",
"version": "0.9.1",
"description": "cli framework using function signatures",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha -R spec test/*.js",
"test:watch": "npm test -- --watch",
"docs:gen": "node tools/gen-readme.js",
"docs": "npm run docs:gen && embedme README.md",
"docs:check": "npm run docs:gen && embedme --verify README.md && git diff --exit-code examples/readme"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"engines": {
"node": ">= 6.0.0"
},
"repository": "tln/fncli",
"devDependencies": {
"embedme": "^1.22.1",
"mocha": "^7.1.0"
},
"dependencies": {
"acorn": "^8.10.0",
"picocolors": "^1.1.1",
"shell-complete": "^0.2.0"
}
}