-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "@dancrumb/fallback-plan",
"version": "2.0.7",
"description": "Handy support for graceful degradation",
"main": "dist/index.js",
"scripts": {
"build": "yarn run tsc --project ./tsconfig.build.json",
"test": "yarn run jest",
"lint": "yarn run eslint -c .eslintrc.js --ext .ts src",
"docs": "yarn run typedoc src --plugin typedoc-plugin-mdn-links",
"preversion": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dancrumb/fallback-plan.git"
},
"keywords": [
"promises",
"fallback",
"graceful"
],
"author": "Dan Rumney <dancrumb@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dancrumb/fallback-plan/issues"
},
"homepage": "https://github.com/dancrumb/fallback-plan#readme",
"devDependencies": {
"@jest/globals": "^29.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.19",
"typedoc-plugin-mdn-links": "^2.0.0",
"typescript": "^4.8.4"
},
"packageManager": "yarn@3.2.4"
}