-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.52 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
{
"name": "completion-stage",
"version": "1.0.0",
"description": "A port of Java's CompletionStage using promises",
"homepage": "https://github.com/robtimus/completion-stage",
"bugs": {
"url": "https://github.com/robtimus/completion-stage/issues"
},
"license": "Apache-2.0",
"author": "Rob Spoor",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/robtimus/completion-stage.git"
},
"scripts": {
"compile": "tsc",
"lint": "eslint ./src/**",
"format": "prettier --write \"**/*.+(json|ts|tsx)\"",
"format:check": "prettier --check \"**/*.+(json|ts|tsx)\"",
"build": "npm run format:check && npm run lint && npm run compile",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^14.18.63",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"jest": "^29.6.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
]
},
"prettier": {
"printWidth": 999
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true
}
}