-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 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
{
"name": "@4dsas/doc_preprocessing",
"version": "1.3.3",
"description": "Preprocess 4D doc to be built by docusaurus",
"main": "preprocessing.js",
"type": "commonjs",
"scripts": {
"test": "mocha test/*.js",
"test_report": "nyc --reporter=text mocha test/*.js",
"test:unit": "mocha test/test-*.js",
"test:all": "mocha test/*.js"
},
"author": "Guillaume kotulski <guillaume.kotulski@4d.com>",
"license": "MIT",
"dependencies": {
"chokidar": "^5.0",
"simple-git": "^3.28",
"yargs": "^18.0",
"glob": "^13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doc4d/doc_preprocessing.git"
},
"files": [
"./lib/**/*",
"./preprocessing.js",
"!test"
],
"bin": {
"doc_preprocess": "./preprocessing.js"
},
"keywords": [
"4d",
"preprocesssing",
"markdown"
],
"bugs": {
"url": "https://github.com/doc4d/doc_preprocessing/issues"
},
"homepage": "https://github.com/doc4d/doc_preprocessing",
"directories": {
"lib": "lib"
},
"devDependencies": {
"chai": "^5.2",
"mocha": "^11.1",
"nyc": "^17.1.0"
}
}