-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.54 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
{
"name": "@funboxteam/crafter",
"version": "6.0.2",
"description": "JavaScript replacement of Drafter library for parsing API Blueprint documentation format",
"repository": {
"type": "git",
"url": "https://github.com/funbox/crafter"
},
"author": "FunBox LLC <[email protected]> (https://funbox.ru)",
"license": "Apache-2.0",
"main": "Crafter.js",
"scripts": {
"pretest": "npm run lint",
"test": "jest --coverage",
"regenerate-fixtures": "node ./scripts/regenerate-fixtures.js",
"lint": "eslint --cache -c .eslintrc --ext .js ./",
"prepublishOnly": "if [ -z \"$CI\" ]; then lawyer; fi"
},
"keywords": [
"drafter",
"api",
"blueprint",
"doc",
"snowcrash",
"protagonist",
"aglio"
],
"bin": {
"crafter": "./cli.js"
},
"devDependencies": {
"@funboxteam/eslint-config": "7.3.0",
"api-elements": "0.2.2",
"eslint": "7.32.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^26.6.3",
"jest-junit": "13.0.0"
},
"dependencies": {
"commander": "10.0.1",
"commonmark": "0.30.0",
"fast-deep-equal": "2.0.1",
"js-yaml": "4.1.0"
},
"jest": {
"testEnvironment": "node",
"roots": [
"tests"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"coverageReporters": [
"html",
"text",
"cobertura",
"lcov"
],
"reporters": [
"default",
"jest-junit"
]
}
}