-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.14 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@graphlab-fr/cosma",
"version": "2.6.1",
"description": "Cosma is a document graph visualization tool. It modelizes interlinked Markdown files and renders them as an interactive network in a web interface.",
"homepage": "https://cosma.arthurperret.fr/",
"repository": {
"type": "git",
"url": "git+https://github.com/graphlab-fr/cosma.git"
},
"bugs": {
"url": "https://github.com/graphlab-fr/cosma/issues"
},
"main": "dist/back.cjs",
"bin": {
"cosma": "dist/back.cjs"
},
"scripts": {
"test:unit": "./node_modules/.bin/jest",
"test:e2e": "./node_modules/.bin/cypress run --config-file ./e2e/cypress.config.js",
"test:e2e:gui": "./node_modules/.bin/cypress open --config-file ./e2e/cypress.config.js",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix",
"format": "./node_modules/.bin/prettier --write --list-different './**/**+(.js|.css)'",
"man": "mkdir -p man && pandoc docs/user-manual.md -f markdown -t man -s --lua-filter man/manfilter.lua --include-before-body man/cosma.1.before --include-after-body man/cosma.1.after --metadata author=\"\" -o man/cosma.1",
"watch:front": "./node_modules/.bin/webpack build --config ./webpack-front.config.mjs --mode development --watch",
"build:front": "./node_modules/.bin/webpack build --config ./webpack-front.config.mjs --mode production",
"watch:back": "./node_modules/.bin/webpack build --config ./webpack-back.config.mjs --mode development --watch",
"build:back": "./node_modules/.bin/webpack build --config ./webpack-back.config.mjs --mode production",
"prepare": "npm run build:front && npm run build:back"
},
"contributors": [
"Arthur Perret",
"Guillaume Brioudes",
"Olivier Le Deuff",
"Clément Borel"
],
"author": "Guillaume Brioudes (https://myllaume.fr/)",
"license": "GPL-3.0-or-later",
"dependencies": {
"@vscode/markdown-it-katex": "^1.1.2",
"citeproc": "^2.4.63",
"commander": "^12.1.0",
"csv-parse": "^6.1.0",
"d3": "^7.9.0",
"env-paths": "^4.0.0",
"fuse.js": "^7.1.0",
"graphology": "^0.26.0",
"graphology-traversal": "^0.3.1",
"hotkeys-js": "^3.13.15",
"joi": "^18.0.2",
"katex": "^0.16.38",
"markdown-it": "^14.1.1",
"nunjucks": "^3.2.4",
"yaml": "^2.8.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@eslint/js": "^10.0.1",
"babel-jest": "^30.3.0",
"babel-loader": "^10.1.1",
"cypress": "^15.12.0",
"eslint": "^10.0.3",
"eslint-plugin-cypress": "^6.2.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-n": "^17.24.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"prettier": "3.8.1",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"yaml-loader": "^0.9.0"
},
"directories": {
"doc": "docs",
"man": "man"
},
"files": [
"docs",
"man"
],
"keywords": [],
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always"
}
}