-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.82 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.82 KB
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
{
"name": "@ospin/fct-graph",
"author": "OSPIN webapp team",
"version": "2.4.6",
"description": "Graph data structure with conditional edges via 'slots' on nodes. Intended to represent physical and virtual functionalities on a device.",
"main": "index.js",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=20.x",
"npm": ">=6"
},
"np": {
"yarn": false,
"contents": "src"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ospin-web-dev/FCTGraph.git"
},
"scripts": {
"start": "node index.js",
"test-release": "npx semantic-release --dry-run",
"test": "jest",
"test-with-coverage": "jest --coverage",
"lint-diff": "LIST=$(git diff-index --name-only --diff-filter=d HEAD | grep .*\\.[jt]sx\\\\? | grep -v json); if [ \"$LIST\" ]; then eslint $LIST; fi",
"lint-diff-and-fix": "LIST=$(git diff-index --name-only --diff-filter=d HEAD | grep .*\\.[jt]sx\\\\? | grep -v json); if [ \"$LIST\" ]; then eslint --fix $LIST; fi"
},
"files": [
"index.js",
"src/"
],
"dependencies": {
"deep-clone": "^3.0.3",
"deep-diff": "^1.0.2",
"joi": "^17.6.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsdoc": "^48.0.6",
"jest": "^29.7.0",
"semantic-release": "^23.0.2"
},
"jest": {
"coverageDirectory": "./coverage/",
"modulePaths": [
"<rootDir>/src",
"<rootDir>"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/seeders/**"
]
}
}