generated from ForbesLindesay/npm-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.07 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
{
"name": "docker-over-ssh",
"description": "Push docker containers efficiently over abitrary streams, e.g. ssh",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"docker-over-ssh": "./lib/cli.js"
},
"repository": "[email protected]:ForbesLindesay/docker-over-ssh.git",
"author": "Forbes Lindesay <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"postbuild": "rimraf lib/**/__tests__",
"lint": "tslint './src/**/*.{ts,tsx}' -t verbose -p .",
"prettier:write": "prettier --ignore-path .gitignore --write './**/*.{md,json,yaml,js,jsx,ts,tsx}'",
"prettier:check": "prettier --ignore-path .gitignore --list-different './**/*.{md,json,yaml,js,jsx,ts,tsx}'",
"test": "jest",
"ci:test": "jest --silent --maxWorkers=2"
},
"dependencies": {
"@authentication/generate-passcode": "^1.1.0",
"@databases/with-container": "^0.0.2",
"bytes": "^3.1.0",
"chalk": "^3.0.0",
"detect-port": "^1.3.0",
"log-update": "^3.3.0",
"multiplex": "^6.7.0",
"progress-stream": "^2.0.0"
},
"devDependencies": {
"@forbeslindesay/tsconfig": "^2.0.0",
"@types/bytes": "^3.0.0",
"@types/jest": "^24.0.18",
"@types/progress-stream": "^2.0.0",
"husky": "^3.0.8",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"ngrok": "^3.2.5",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"globals": {
"ts-jest": {
"isolatedModules": true
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.test.ts?(x)"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"tslint -t verbose -p .",
"git add"
],
"*.{md,json,yaml,js,jsx}": [
"prettier --write",
"git add"
]
}
}