-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1019 Bytes
/
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
{
"name": "fortunes-algorithm",
"version": "0.4.4",
"description": "Implementation of Fortune's algorithm to compute Voronoi diagrams",
"main": "./dist/index.js",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/shambu09/fortunes-algorithm.git"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/index.js",
"prepublish": "npm run build",
"test": "jest --detectOpenHandles --coverage",
"test:watch": "jest --watch"
},
"author": "Shambu Valasang",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"jest": "^29.6.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}