-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "graphlib",
"version": "0.1.0",
"description": "This is a full featured graph library with a multitude of capabilities going beyond the core library of cytoscape.",
"author": "Jillian Ada Burrows <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adaburrows/graphlib/issues"
},
"homepage": "https://github.com/adaburrows/graphlib#readme",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"files": [
"dist",
"src",
"README.md"
],
"engines": {
"node": ">=10"
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"clean": "rm -rf ./dist",
"lint": "eslint . --ignore-path .gitignore --ext .ts",
"check": "tsc --noEmit",
"lint:fix": "pnpm run lint -- --fix",
"test": "jest",
"test:ci": "pnpm test",
"test:watch": "pnpm test -- --watch --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaburrows/graphlib.git"
},
"keywords": [
"graph",
"topology",
"graph traversal",
"matrix",
"spectral graph theory"
],
"devDependencies": {
"@parcel/packager-ts": "2.3.2",
"@parcel/transformer-typescript-types": "2.3.2",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"parcel": "^2.3.2",
"ts-jest": "^27.1.3",
"tsconfig-paths": "^3.13.0",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
}
}