-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 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
{
"name": "remark-remove-travis-ci-badge",
"description": "remark plugin for removing a Travis CI badge",
"license": "MIT",
"version": "0.0.0-semantically-released",
"type": "module",
"engines": {
"node": "^16.14 || >=18"
},
"author": "Matt Travi <[email protected]> (https://matt.travi.org)",
"repository": "form8ion/remark-remove-travis-ci-badge",
"bugs": "https://github.com/form8ion/remark-remove-travis-ci-badge/issues",
"homepage": "https://npm.im/remark-remove-travis-ci-badge",
"keywords": [
"remark-plugin"
],
"runkitExampleFilename": "./example.js",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"sideEffects": false,
"scripts": {
"test": "npm-run-all --print-label build --parallel lint:* --parallel test:*",
"lint:lockfile": "lockfile-lint",
"lint:js": "eslint . --cache",
"lint:js:fix": "run-s lint:js -- --fix",
"lint:md": "remark . --frail",
"generate:md": "remark . --output",
"pregenerate:md": "run-s build",
"lint:sensitive": "ban",
"lint:gherkin": "gherkin-lint",
"pretest:integration": "run-s build",
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
"test:integration:base": "DEBUG=any cucumber-js test/integration",
"test:integration:debug": "DEBUG=test run-s test:integration",
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
"test:integration:wip:debug": "DEBUG=test run-s 'test:integration:wip'",
"test:integration:focus": "run-s 'test:integration:base -- --profile focus'",
"clean": "rimraf ./lib",
"prebuild": "run-s clean",
"build": "npm-run-all --print-label --parallel build:*",
"build:js": "rollup --config",
"watch": "run-s 'build:js -- --watch'",
"prepack": "run-s build",
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"test:unit:base": "DEBUG=any vitest run",
"lint:peer": "npm ls >/dev/null",
"prepare": "husky install",
"lint:engines": "ls-engines"
},
"files": [
"example.js",
"lib/"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"mdast-util-definitions": "^6.0.0",
"unist-util-remove": "^4.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@cucumber/cucumber": "9.6.0",
"@form8ion/commitlint-config": "2.0.0",
"@form8ion/eslint-config": "7.0.12",
"@form8ion/eslint-config-cucumber": "1.4.1",
"@form8ion/remark-lint-preset": "6.0.5",
"@travi/any": "3.1.2",
"ban-sensitive-files": "1.10.6",
"c8": "10.1.2",
"chai": "5.1.2",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"gherkin-lint": "4.2.4",
"husky": "9.1.6",
"jest-when": "3.6.0",
"lockfile-lint": "4.14.0",
"ls-engines": "0.9.3",
"npm-run-all2": "7.0.1",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"remark-toc": "9.0.0",
"remark-usage": "11.0.1",
"rimraf": "6.0.1",
"rollup": "4.26.0",
"rollup-plugin-auto-external": "2.0.0",
"vitest": "2.1.5"
}
}