generated from ammanvedi/typescript-npm-module-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 989 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
35
36
37
38
39
40
41
{
"name": "to-planar-graph",
"author": "amman.vedi@gmail.com",
"keywords": [
"graph",
"to",
"planar",
"edge",
"intersection"
],
"license": "MIT",
"version": "3.0.1",
"description": "Given a graph with a graph with a non planar embedding, make changes to this graph so that it becomes planar.",
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "./node_modules/.bin/tsc"
},
"files": [
"src/**/*",
"!src/test**/*",
"dist/**/*"
],
"main": "./dist",
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fast-xml-parser": "^3.21.1",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"dependencies": {
"isect": "^3.0.0"
}
}