-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.35 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.35 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
{
"name": "@dmoosocool/deploy",
"version": "1.0.7",
"main": "lib/index.js",
"files": [
"/lib",
"/types"
],
"types": "types/index.d.ts",
"license": "MIT",
"repository": "https://github.com/dmoosocool/deploy",
"scripts": {
"build:types": "tsc src/**/*.ts --declaration --emitDeclarationOnly --allowSyntheticDefaultImports --outDir types",
"build:lib": "tsc -b",
"build": "npm run build:types && npm run build:lib",
"test": "npx mocha --reporter spec --require ts-node/register 'test/**/*.test.ts'",
"clean": "rm -rf lib types",
"npm": "npm run clean && npm run build && npm publish --access public"
},
"dependencies": {
"adm-zip": "^0.5.1",
"archiver": "^5.1.0",
"dayjs": "^1.10.2",
"dotenv": "^8.2.0",
"dotenv-parse-variables": "^1.0.1",
"node-ssh": "^11.1.1",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/adm-zip": "^0.4.33",
"@types/archiver": "^5.1.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.19",
"@types/ssh2": "^0.5.46",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.4.0",
"prettier": "2.2.1",
"ts-node": "^9.1.1"
}
}