-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
128 lines (128 loc) · 3.52 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "refractor",
"version": "4.8.1",
"description": "Lightweight, robust, elegant virtual syntax highlighting using Prism",
"license": "MIT",
"keywords": [
"syntax",
"code",
"ast",
"virtual",
"dom",
"highlight",
"highlighting",
"prism"
],
"repository": "wooorm/refractor",
"bugs": "https://github.com/wooorm/refractor/issues",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
},
"author": "Titus Wormer <[email protected]> (https://wooorm.com)",
"contributors": [
"Titus Wormer <[email protected]> (https://wooorm.com)",
"Conor Hastings <[email protected]>",
"Daniel Stefanovic <[email protected]>",
"Mike Kruk <[email protected]>",
"Peter Williams <[email protected]>",
"Brian Mearns <[email protected]>",
"Gray Zhang <[email protected]>"
],
"sideEffects": [
"lib/all.js",
"lib/common.js"
],
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"lang/",
"lib/",
"index.d.ts",
"index.js"
],
"dependencies": {
"@types/hast": "^2.0.0",
"@types/prismjs": "^1.0.0",
"hastscript": "^7.0.0",
"parse-entities": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@types/babel__core": "^7.0.0",
"@types/mdast": "^3.0.0",
"@types/node": "^18.0.0",
"alpha-sort": "^5.0.0",
"c8": "^7.0.0",
"chalk": "^5.0.0",
"detab": "^3.0.0",
"hast-util-to-html": "^8.0.0",
"is-hidden": "^2.0.0",
"is-keyword": "^1.0.0",
"mdast-zone": "^5.0.0",
"patch-package": "^6.0.0",
"prettier": "^2.0.0",
"prismjs": "~1.29.0",
"rehype": "^12.0.0",
"remark-cli": "^11.0.0",
"remark-preset-wooorm": "^9.0.0",
"trim-lines": "^3.0.0",
"type-coverage": "^2.0.0",
"typescript": "^4.0.0",
"unist-builder": "^3.0.0",
"xo": "^0.53.0"
},
"scripts": {
"prepack": "npm run generate && npm run build && npm run format",
"generate-core": "patch-package && cp node_modules/prismjs/components/prism-core.js lib/prism-core.js",
"generate-languages": "node --conditions development script/languages.js",
"generate-list": "node --conditions development script/list.js",
"generate-fixtures": "node --conditions development script/fixtures.js",
"generate": "npm run generate-core && npm run generate-languages && npm run generate-list && npm run generate-fixtures",
"build": "tsc --build --clean && tsc --build && type-coverage",
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"test-api": "node --conditions development test/index.js",
"test-coverage": "c8 -x \"lang/\" -x \"test/\" -x \"lib/prism-core.js\" --check-coverage --100 --reporter lcov npm run test-api",
"test": "npm run generate && 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,
"ignores": [
"lib/prism-core.js",
"lang/*.js"
]
},
"remarkConfig": {
"plugins": [
"preset-wooorm",
[
"toc",
{
"skip": "license"
}
],
"./script/count.js",
"./script/support.js"
]
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true,
"ignoreFiles": [
"lang/*.d.ts",
"lib/prism-core.d.ts",
"lib/prism-core.js"
]
}
}