forked from dagrejs/graphlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@api-modeling/graphlib",
"version": "3.0.4",
"description": "A directed and undirected multi-graph library",
"author": "Chris Pettitt <cpettitt@gmail.com>",
"license": "MIT",
"main": "index.js",
"module": "index.js",
"type": "module",
"keywords": [
"graph",
"algorithms"
],
"contributors": [
{
"name": "Pawel Uchida-Psztyc",
"email": "pawel.psztyc@mulesoft.com"
}
],
"scripts": {
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:types": "tsc",
"lint": "npm run lint:eslint",
"format": "npm run format:eslint",
"test": "web-test-runner test/**/*.test.js test/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit",
"test:watch": "web-test-runner test/**/*.test.js test/*.test.js --node-resolve --watch --playwright --browsers chromium",
"benchmark": "node tasks/bench.js"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@esm-bundle/chai": "^4.3.4",
"@types/benchmark": "^2.1.0",
"@types/lodash-es": "^4.17.4",
"@types/seedrandom": "^3.0.0",
"@types/sprintf": "^0.1.0",
"@web/test-runner": "^0.13.12",
"@web/test-runner-playwright": "^0.8.6",
"benchmark": "^2.1.4",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-no-only-tests": "^2.6.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"lodash-es": "^4.17.21",
"seedrandom": "^3.0.5",
"sprintf": "^0.1.5",
"typescript": "^4.3.2",
"typescript-lit-html-plugin": "^0.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dagrejs/graphlib.git"
},
"prettier": {
"singleQuote": true,
"arrowParens": "always",
"printWidth": 240,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}