-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
91 lines (91 loc) · 2.97 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
89
90
91
{
"name": "@graphlab-fr/cosma",
"version": "2.5.4",
"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",
"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": {
"@zettlr/citr": "^1.2.2",
"citeproc": "^2.4.63",
"commander": "^12.0.0",
"csv-parse": "^5.5.5",
"d3": "^7.9.0",
"env-paths": "^2.2.1",
"fuse.js": "^6.6.2",
"glob": "^10.4.5",
"graphology": "^0.25.4",
"graphology-traversal": "^0.3.1",
"hotkeys-js": "^3.13.7",
"markdown-it": "^14.1.0",
"nunjucks": "^3.2.4",
"slugify": "^1.6.6",
"yaml": "^2.4.2"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"chai": "^4.3.6",
"chai-fs": "^2.0.0",
"css-loader": "^7.1.2",
"cypress": "^13.9.0",
"jest": "^29.7.0",
"mocha": "^10.4.0",
"prettier": "3.2.5",
"style-loader": "^4.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"yaml-loader": "^0.8.1"
},
"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"
}
}