-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "@nut-tree/secrets",
"version": "4.0.2",
"description": "A helper package to deal with secrets inside test cases",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"clean": "rm -rf dist",
"compile": "npm run clean && tsc -p .",
"test": "jest",
"coverage": "jest --coverage",
"lint": "tslint -p tsconfig.json",
"watch": "tsc -w -p .",
"prepublishOnly": "npm run compile && npm test",
"versionBump": "bump prompt --commit --tag --push --all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nut-tree/secrets.git"
},
"author": "Simon Hofmann <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nut-tree/secrets/issues"
},
"homepage": "https://github.com/nut-tree/secrets#readme",
"devDependencies": {
"@types/jest": "24.0.23",
"@types/node": "12.12.14",
"jest": "24.9.0",
"ts-jest": "24.2.0",
"tslint": "5.20.1",
"typescript": "3.7.2",
"version-bump-prompt": "5.0.6"
}
}