-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 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
{
"name": "@rogwilco/try",
"version": "2.0.0",
"author": "Nick Williams <[email protected]>",
"license": "BSD-3-Clause",
"description": "A lightweight module that enables scoped catch blocks.",
"keywords": [
"try",
"catch",
"finally",
"try/catch",
"error",
"exception",
"typescript"
],
"homepage": "https://github.com/rogwilco/Try#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rogwilco/Try.git"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig-build.json",
"clean": "cat .cleanrc | sed -E '/^#.*$/ d' | sed '/^\\s*$/ d' | xargs rm -rf",
"dist": "tsc --project tsconfig-dist.json",
"docs": "typedoc",
"format": "prettier-standard",
"lint": "prettier-standard --lint",
"test": "jest",
"watch": "tsc --project tsconfig-build.json --watch"
},
"devDependencies": {
"@qiwi/semantic-release-gh-pages-plugin": "^5.0.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"conventional-changelog-eslint": "^3.0.8",
"jest": "^26.2.2",
"jest-extended": "^0.11.5",
"prettier-standard": "^16.4.1",
"semantic-release": "^17.1.1",
"ts-jest": "^26.1.4",
"typedoc": "^0.19.0",
"typescript": "^4.0.2",
"yarn": "^1.22.4"
}
}