-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.02 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
{
"name": "@bernardjoseph/micromark-extension-citekey",
"version": "0.1.2",
"description": "micromark extension to support Pandoc-style citation keys",
"license": "MIT",
"keywords": [
"micromark",
"micromark-extension",
"cite",
"citation",
"pandoc",
"markdown",
"remark",
"unified"
],
"repository": "https://github.com/bernardjoseph/micromark-extension-citekey",
"author": "Bernd Rellermeyer <[email protected]>",
"type": "module",
"main": "index.js",
"types": "dev/index.d.ts",
"files": [
"dev/",
"lib/",
"index.d.ts",
"index.js"
],
"exports": {
"development": "./dev/index.js",
"default": "./index.js"
},
"dependencies": {
"micromark-util-character": "^1.1.0",
"micromark-util-symbol": "^1.0.1",
"micromark-util-types": "^1.0.2"
},
"devDependencies": {
"@types/tape": "^4.13.2",
"c8": "^7.13.0",
"micromark": "^3.1.0",
"micromark-build": "^1.3.0",
"prettier": "^2.8.4",
"remark-cli": "^11.0.0",
"remark-preset-wooorm": "^9.1.0",
"rimraf": "^4.4.0",
"tape": "^5.6.3",
"type-coverage": "^2.24.1",
"typescript": "^4.9.5",
"xo": "^0.53.1"
},
"scripts": {
"build": "rimraf --glob \"dev/**/*.d.ts\" \"test/**/*.d.ts\" && tsc && type-coverage && micromark-build",
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"test-api": "node --conditions development test/index.js",
"test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
"test": "npm run build && npm run format && npm run test-coverage"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true
},
"remarkConfig": {
"plugins": [
"remark-preset-wooorm"
]
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
}
}