forked from dscalzi/Nebula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "nebula",
"version": "0.1.0",
"description": "Utility package to generate a distribution.json for Helios.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"tsc": "tsc",
"build": "npm run clean && npm run tsc",
"start": "npm run build && node dist/index.js",
"lint": "eslint . --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dscalzi/Nebula.git"
},
"keywords": [
"helios",
"nebula",
"distribution"
],
"author": "Daniel Scalzi",
"license": "MIT",
"bugs": {
"url": "https://github.com/dscalzi/Nebula/issues"
},
"homepage": "https://github.com/dscalzi/Nebula#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/node": "^12.12.53",
"@types/triple-beam": "^1.3.1",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.6.0",
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
},
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"fs-extra": "^9.0.1",
"helios-distribution-types": "^1.0.0-pre.1",
"moment": "^2.27.0",
"node-stream-zip": "^1.11.2",
"toml": "^3.0.0",
"triple-beam": "^1.3.0",
"winston": "^3.3.3",
"yargs": "^15.4.1"
}
}