-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.18 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.18 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
{
"name": "@saeon/cli-tools",
"version": "0.2.0",
"description": "Build deeply nested, self-documenting CLI applications dynamically and declaratively.",
"type": "module",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"main": "dist/cjs/index.js",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"keywords": [
"@saeon/cli-tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SAEON/nodejs-cli-tools.git"
},
"bugs": {
"url": "https://github.com/SAEON/nodejs-cli-tools/issues"
},
"homepage": "https://github.com/SAEON/nodejs-cli-tools",
"author": "zd.smith@saeon.nrf.ac.za",
"license": "MIT",
"dependencies": {
"arg": "^5.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.0",
"nodemon": "^2.0.15",
"onchange": "^7.1.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.1"
},
"directories": {
"example": "example"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}