-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "manhattan",
"description": "Manhattan resolver.",
"author": {
"name": "Roberto Bisello",
"email": "vash1486@gmail.com"
},
"main": "index.ts",
"scripts": {
"test": "jest",
"clean": "rm -rf ./dist",
"tsc": "tsc",
"build": "npm run clean && npm run tsc",
"watch": "tsc --watch",
"eslint": "eslint lib/* --ext .ts --no-error-on-unmatched-pattern",
"eslint-fix": "eslint lib/* --ext .ts --no-error-on-unmatched-pattern --fix"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.34",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"engines": {
"node": "^14"
}
}