-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.53 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.53 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@bitgenics/fab-upload-cli",
"version": "0.2.4",
"author": "Tom Trinca @plexey",
"bin": {
"fab-upload": "./bin/run"
},
"bugs": {
"url": "https://github.com/bitgenics/fab-upload-cli/issues"
},
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.14.0",
"@oclif/plugin-help": "^2.2.3",
"chalk": "^4.0.0",
"is-git-dirty": "^1.0.0",
"mime": "^2.4.4",
"node-fetch": "^2.6.0",
"tslib": "^1.11.1"
},
"devDependencies": {
"@oclif/test": "^1",
"@oclif/tslint": "^3",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"@types/node-fetch": "^2.5.6",
"chai": "^4",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/bitgenics/fab-upload-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "fab-upload"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitgenics/fab-upload-cli.git"
},
"scripts": {
"dev": "node ./bin/run",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts",
"description": "CI tool for building and uploading a Frontend Application Bundle to Linc.",
"directories": {
"test": "test"
}
}