-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.78 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "wellkept",
"version": "1.3.0",
"description": "",
"keywords": [
"secret",
"secrets",
"environment",
"env",
".env",
"dotenv",
"variables",
"config",
"settings",
"secret manager",
"secrets manager",
"credential",
"credentials",
"configuration"
],
"author": {
"name": "Stefano Masini",
"url": "https://stefanomasini.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stefanomasini/wellkept.git"
},
"main": "dist/public.js",
"bin": {
"wellkept": "bin/cli.js"
},
"types": "dist/public.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && npm run lint && npm run format && tsc",
"changelog": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"clean": "(rm -r ./.nyc_output || true) && (rm -r ./coverage || true) && (rm -r ./dist || true)",
"clean:all": "npm run clean && (rm -r ./node_modules || true)",
"cover": "nyc npm run test",
"cover:check": "nyc --check-coverage npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --ext .ts --fix src/**/*.ts test/**/*.ts",
"preversion": "npm run build && npm run cover:check",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"test": "mocha",
"upgrade": "npx npm-check -u",
"version": "npm run build && npm run changelog:update",
"check-format": "prettier --config .prettierrc --check src/**/*.ts test/**/*.ts",
"format": "prettier --config .prettierrc --write --check src/**/*.ts test/**/*.ts"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/crypto-js": "^4.1.1",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.35",
"@types/readline-sync": "^1.4.4",
"@types/terminal-kit": "^1.34.0",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"chai": "^4.1.2",
"conventional-changelog-cli": "^2.0.12",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^3.0.1",
"eslint": "^8.16.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"prettier": "^2.6.2",
"source-map-support": "^0.5.12",
"ts-node": "^10.0.0",
"typescript": "^4.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.2.0",
"crypto-js": "^4.1.1",
"keytar": "^7.9.0",
"readline-sync": "^1.4.10",
"terminal-kit": "^1.49.4"
},
"mocha": {
"require": [
"source-map-support/register",
"ts-node/register"
],
"extension": "ts",
"spec": "test/**/*.ts"
}
}