-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.87 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "prego",
"type": "module",
"imports": {
"#gutils/*": "./data-structures/graph/utils/*.js",
"#gutils/*.js": "./data-structures/graph/utils/*.js",
"#sys/*": "./algorithms/sys/*.js",
"#sys/*.js": "./algorithms/sys/*.js",
"#algorithms/*": "./algorithms/*.js",
"#algorithms/*.js": "./algorithms/*.js",
"#math/*": "./algorithms/math/*.js",
"#math/*.js": "./algorithms/math/*.js",
"#dstructures/*": "./data-structures/*.js",
"#dstructures/*.js": "./data-structures/*.js",
"#galgorithms/*": "./data-structures/graph/algorithms/*.js",
"#galgorithms/*.js": "./data-structures/graph/algorithms/*.js"
},
"version": "6.1.0",
"description": "Package to handle quiver-based structures",
"repository": {
"type": "git",
"url": "git+https://github.com/quivero/prego.git"
},
"keywords": [
"data-structures",
"algorithms"
],
"author": "brunolnetto",
"license": "MIT",
"bugs": {
"url": "https://github.com/quivero/prego/issues"
},
"homepage": "https://github.com/quivero/prego#readme",
"scripts": {
"build": "npm run node:build && npm run docker:build",
"node:build": "./scripts/node-build.sh",
"docker:build": "./scripts/docker-build.sh",
"docker:deploy": "./scripts/docker-deploy.sh $npm_config_tag $npm_config_from $npm_config_to",
"docker:watch": "./scripts/docker-deploy.sh $npm_config_tag",
"update": "bash ./scripts/npm-update.sh",
"start": "nodemon --trace-warnings --experimental-modules ./src/index.js",
"test:clearCache": "jest --clearCache",
"test": "npm run test:clearCache && jest --config",
"test:watch": "jest --config --watchAll",
"test:ci": "jest --config --collect-coverage --coverage --ci",
"release": "np --any-branch",
"format": "prettier --write . && prettier --check .",
"prepare": "husky install"
},
"dependencies": {
"arqeo": "^0.3.0",
"clean": "^4.0.2",
"esm": "^3.2.25",
"eulejs": "^2.0.4",
"express": "^4.18.2",
"fs": "^0.0.2",
"husky": "^9.0.0",
"jest-extended": "^4.0.1",
"lodash": "^4.17.21",
"lodash.multicombinations": "^1.0.0",
"mermaid": "^11.0.0",
"morgan": "^1.10.0",
"node-notifier": "^10.0.1",
"prettier": "^3.0.0",
"strongly-connected-components": "^1.0.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"dotenv": "^16.0.3",
"eslint-plugin-jest": "^28.0.0",
"eslint-plugin-jest-extended": "^2.0.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-promise": "^7.0.0",
"jest": "29.7.0",
"jest-progress-bar-reporter": "^1.0.25",
"jest-slow-test-reporter": "^1.0.0",
"lodash.combinations": "^18.11.1",
"nodemon": "^3.0.0",
"np": "^10.0.0"
},
"engines": {
"node": " >=16.0.0",
"npm": ">=6.9.0"
}
}