-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·62 lines (62 loc) · 1.44 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
{
"name": "uilicious-cli",
"version": "5.1.13",
"description": "Uilicious CLI toolchain",
"main": "uilicious-cli.js",
"keywords": [
"Uilicious",
"CLI"
],
"author": "Uilicious Private Limited",
"license": "MIT",
"//-bin": [
"bin maps the command line name to the respective script file",
"see : https://medium.com/netscape/a-guide-to-create-a-nodejs-command-line-package-c2166ad0452e"
],
"bin": {
"uilicious-cli": "./src/uilicious-cli.js"
},
"//-cpu-os": [
"Ensuring that package is deployed only on compatible platforms"
],
"cpu": [],
"os": [
"darwin",
"linux",
"win32"
],
"//-engines": "Ensure NPM version is atleast 5.6.0 (so that optionalDependencies, with OS/CPU restriction is supported)",
"engines": {
"node": ">=10.0.0",
"npm": ">=5.6.0"
},
"optionalDependencies": {},
"devDependencies": {
"chai": "=4.2.0",
"chai-files": "=1.4.0",
"mocha": "=6.2.3",
"mocha-parallel-tests": "=2.3.0",
"uuid": "=3.3.2"
},
"dependencies": {
"archiver": "=5.3.0",
"archiver-promise": "=1.0.0",
"axios": "=0.21.4",
"buffer-from": "=1.1.1",
"chalk": "=2.4.2",
"form-data": "=2.3.3",
"fs-extra": "=8.1.0",
"hjson": "=3.2.2",
"is-stream": "=2.0.0",
"json-stringify-safe": "=5.0.1",
"node-fetch": "=2.6.7",
"normalize-path": "=3.0.0",
"promise-queue": "=2.2.5",
"sleep-promise": "=8.0.1",
"sywac": "=1.3.0"
},
"scripts": {
"cli": "./src/uilicious-cli.js",
"uilicious-cli": "./src/uilicious-cli.js"
}
}