-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.51 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
{
"name": "ferrum.doctest",
"version": "1.0.5",
"description": "Test the examples included in your documentation",
"main": "index.js",
"bin": {
"ferrum.doctest": "./cli.js"
},
"scripts": {
"test": "node ./cli.js exec -s index.js -s cli.js --mdsrc README.md -c 'nyc --reporter=text --reporter=lcov --check-coverage --branches 80 --statements 80 --lines 80 mocha --reporter mocha-multi-reporters --reporter-options configFile=.mochaReportersConfig.json --require source-map-support/register -t 20000 \"$DOCTEST_FILE\" test'",
"test-ci": "npm run test && codecov",
"lint": "node ./cli.js exec -- eslint --ignore-pattern test/fixtures index.js cli.js test",
"semantic-release": "semantic-release",
"docs": "jsdoc -c .jsdoc.json",
"commit": "git-cz",
"snyk-protect": "snyk protect"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/ferrum.doctest"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/ferrum.doctest/issues"
},
"homepage": "https://github.com/adobe/ferrum.doctest#readme",
"dependencies": {
"documentation": "13.2.1",
"ferrum": "^1.9.2",
"mocha-multi-reporters": "^1.5.1",
"remark": "^13.0.0",
"source-map": "^0.7.3",
"source-map-support": "^0.5.19",
"squirrelly": "^8.0.8",
"uuid": "^8.3.2",
"yargs": "^17.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.3",
"@semantic-release/npm": "7.1.3",
"@semantic-release/release-notes-generator": "9.0.3",
"ajv": "8.6.2",
"codecov": "3.8.3",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"docdash": "git+https://github.com/koraa/docdash.git",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.24.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.24.0",
"jsdoc": "3.6.7",
"junit-report-builder": "3.0.0",
"lint-staged": "11.1.2",
"mocha": "9.0.3",
"mocha-junit-reporter": "2.0.0",
"nyc": "15.1.0",
"semantic-release": "17.4.4",
"snyk": "1.677.0"
},
"snyk": true,
"renovate": {
"extends": [
"config:base",
"schedule:earlyMondays"
],
"timezone": "Europe/Zurich",
"packageRules": [
{
"packagePatterns": [
".*"
],
"groupName": "any"
}
]
}
}