-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.04 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
{
"name": "@lando/leia",
"description": "Runs tests cleverly hidden in documentation",
"version": "1.0.0-beta.4",
"author": "Mike Pirog @pirog",
"license": "GPL-3.0",
"repository": "github:lando/leia",
"bugs": "https://github.com/lando/leia/issues/new/choose/",
"homepage": "https://github.com/lando/leia",
"keywords": [
"lando",
"leia",
"mocha",
"oclif",
"testing"
],
"engines": {
"node": ">=18.0.0"
},
"main": "lib/leia.js",
"bin": {
"leia": "./bin/leia"
},
"files": [
"/bin",
"/cli",
"/lib",
"/templates",
"/yarn.lock"
],
"nyc": {
"include": [
"lib/*.js"
],
"exclude": [
"test/**",
"bin/**"
],
"cache": true,
"all": true
},
"oclif": {
"bin": "leia",
"plugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"leia": "node ./bin/leia",
"lint": "eslint bin/leia . --ignore-pattern '*.leia.js' --ignore-pattern 'leia.readme.js'",
"test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/*.spec.js",
"test:leia": "npx leia README.md \"examples/**/*.md\" -i \"examples/basic-cmd-example.md\" -i \"examples/exclude-example/**/*.md\" -i \"examples/stdin-example.md\"",
"test:leia:stdin": "npx leia examples/stdin-example.md --stdin"
},
"dependencies": {
"@lando/argv": "^1.0.6",
"@lando/chai": "npm:chai@^4.4.1",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/errors": "^1.3.5",
"@oclif/plugin-help": "^3.2.3",
"chalk": "^4.1.2",
"command-line-test": "^1.0.10",
"debug": "^4.3.2",
"detect-newline": "^3.1.0",
"dot": "^1.1.2",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"lodash": "^4.17.11",
"marked": "^4.0.10",
"mocha": "^9.2.2",
"object-hash": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "7.15.7",
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"eslint": "^7.3",
"eslint-config-google": "^0.14.0",
"mock-fs": "^4.7.0",
"nyc": "^15.1.0"
}
}