-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "@persistr/clif",
"version": "1.10.1",
"description": "CLIF - CLI framework for Node.js",
"main": "src/index.js",
"scripts": {
"build": "browserify src/index.js -t [ babelify --plugins [ @babel/plugin-proposal-nullish-coalescing-operator @babel/plugin-proposal-optional-chaining ] ] > dist/clif.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/persistr/clif.git"
},
"keywords": [
"cli",
"framework"
],
"author": "Sasa Djolic <[email protected]> (https://www.linkedin.com/in/sasadjolic/)",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/persistr/clif/issues"
},
"homepage": "https://github.com/persistr/clif#readme",
"dependencies": {
"chalk": "^4.1.0",
"ci-info": "^2.0.0",
"colors": "^1.4.0",
"columnify": "^1.5.4",
"get-options": "^1.2.0",
"has-unicode": "^2.0.1",
"printj": "^1.2.2",
"prompts": "^2.4.0",
"update-notifier": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"babelify": "^10.0.0",
"uglifyify": "^5.0.2"
},
"browserify": {
"transform": [
[
"babelify",
{
"plugins": [
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-optional-chaining"
]
}
]
]
}
}