-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.59 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "glitch-deploy-tool",
"version": "0.1.9-alpha",
"description": "CLI tool for deploying files to Glitch.com",
"keywords": [
"glitch.com",
"typescript",
"cli-tool"
],
"main": "lib/index.js",
"module": "lib/index.js",
"bin": {
"glitch-deploy-tool": "lib/cli/index.js"
},
"private": false,
"homepage": "https://github.com/TeamSTEP/glitch-deploy-tool",
"bugs": {
"url": "https://github.com/TeamSTEP/glitch-deploy-tool/issues"
},
"author": {
"name": "Hoon Kim",
"url": "https://github.com/hoonsubin"
},
"repository": {
"type": "git",
"url": "https://github.com/TeamSTEP/glitch-deploy-tool.git"
},
"files": [
"lib"
],
"os": [
"darwin",
"linux"
],
"scripts": {
"start": "NODE_ENV=production ts-node -r dotenv/config src/index.ts",
"dev": "NODE_ENV=development ts-node-dev -r dotenv/config src/index.ts",
"prepublishOnly": "yarn run test && yarn run lint && yarn run build",
"build": "rimraf ./lib && tsc --project tsconfig.json",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "NODE_ENV=test jest --setupFiles dotenv/config --verbose --coverage && eslint '*/**/*.{js,ts,tsx}'",
"cli": "NODE_ENV=development ts-node -r dotenv/config scripts/run.ts"
},
"engines": {
"node": ">=16.x"
},
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/teamstep"
},
"license": "MIT",
"devDependencies": {
"@types/dashdash": "^1.14.0",
"@types/fs-extra": "^9.0.2",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/nock": "^11.1.0",
"@types/node": "^14.14.2",
"@types/node-fetch": "^2.5.7",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"dotenv": "^8.2.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.1",
"jest-config": "^26.6.1",
"nock": "^13.0.4",
"prettier": "^2.1.2",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.5"
},
"dependencies": {
"dashdash": "^2.0.0",
"fs-extra": "^9.0.1",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"query-string": "^6.13.6",
"rimraf": "^3.0.2",
"simple-git": "^3.16.0"
}
}