-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.69 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": "unist-util-replace-all-between",
"version": "1.0.0",
"description": "Utility to replace nodes between all instances of two nodes",
"sideEffects": false,
"type": "module",
"main": "index.js",
"engines": {
"node": ">=16.0.0"
},
"files": [
"index.js",
"types/index.d.ts"
],
"types": "types/index.d.ts",
"scripts": {
"lint": "xo",
"test:types": "tsd",
"test:logic": "tap -Rspec test.js",
"test": "npm run lint && npm run test:types && npm run test:logic",
"report": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unicorn-utterances/unist-util-replace-all-between.git"
},
"keywords": [
"unist",
"node",
"find",
"between",
"util",
"utility"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/unicorn-utterances/unist-util-replace-all-between/issues"
},
"homepage": "https://github.com/unicorn-utterances/unist-util-replace-all-between#readme",
"dependencies": {
"unist-util-is": "^6.0.0"
},
"devDependencies": {
"@types/unist": "^3.0.2",
"coveralls": "^3.1.1",
"prettier": "^3.3.2",
"tap": "^19.2.5",
"tsd": "^0.31.1",
"typescript": "^5.5.2",
"xo": "^0.58.0"
},
"xo": {
"prettier": true,
"rules": {
"unicorn/prefer-number-properties": "off",
"unicorn/no-array-reduce": "off",
"unicorn/no-fn-reference-in-iterator": "off",
"unicorn/prefer-at": "off",
"unicorn/prefer-top-level-await": "off"
}
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": true,
"trailingComma": "none"
}
}