-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "docker-swarm-secrets",
"version": "2.0.4",
"description": "A manager for Docker secrets that features customizable secret parsing and async I/O.",
"keywords": [
"docker",
"swarm",
"secret",
"secrets",
"container",
"parser",
"loader",
"typescript",
"types"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"start": "node index.js",
"test": "npm run lint && npm run testOnly",
"testOnly": "nyc mocha -r ts-node/register ./test/**/*.spec.ts",
"lint": "eslint . --ext .ts",
"build": "tsc --project ./tsconfig.json",
"prepublishOnly": "npm run build",
"postinstall": "echo \"docker-swarm-secrets is deprecated and is no longer receiving feature updates! Check out the [technician] package on npm!\""
},
"repository": {
"type": "git",
"url": "https://github.com/carriejv/docker-swarm-secrets.git"
},
"bugs": {
"url": "https://github.com/carriejv/docker-swarm-secrets/issues"
},
"homepage": "https://github.com/carriejv/docker-swarm-secrets",
"author": "Carrie Vrtis <carrie@carriejv.com> (https://www.carriejv.com)",
"contributors": [
"Carrie Vrtis <carrie@carriejv.com> (https://www.carriejv.com)"
],
"license": "MIT",
"private": false,
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/node": "^13.13.5",
"@types/mocha": "^7.0.2",
"@types/sinon": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"rewiremock": "^3.13.9",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
}
}