This repository has been archived by the owner on May 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "@tkesgar/amber",
"version": "0.1.0",
"description": "Utility for creating manually resolved/rejected promises",
"keywords": [
"utility",
"promise"
],
"license": "MIT",
"author": "Ted Kesgar <[email protected]> (https://tkesgar.com)",
"contributors": [
"Ted Kesgar <[email protected]> (https://tkesgar.com)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tkesgar/amber.git"
},
"bugs": {
"url": "https://github.com/tkesgar/amber/issues"
},
"homepage": "https://github.com/tkesgar/amber#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12"
},
"files": [
"dist/**"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"watch": "tsc -w",
"lint": "eslint . --ext js,ts && tsc --noEmit",
"format": "prettier --write '**/*'",
"test": "jest",
"clean": "rm -rf dist/**",
"build": "tsc",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepack": "npm run clean && npm run build"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "~2.2.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
}
}