-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.98 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.98 KB
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
{
"name": "codecolor.js",
"version": "2.0.0",
"description": "fast, small and simple syntax highlighter library",
"license": "MIT",
"homepage": "https://github.com/keindev/codecolor.js#readme",
"author": {
"name": "Daniil Ryazanov",
"email": "kein@tagproject.ru"
},
"keywords": [
"highlight",
"syntax",
"typescript"
],
"bugs": "https://github.com/keindev/codecolor.js/issues",
"types": "./lib/index.d.ts",
"type": "module",
"exports": {
".": "./lib/index.js",
"./languages/*": "./lib/languages/*.js",
"./themes/*": "./lib/themes/*.css"
},
"repository": {
"type": "git",
"url": "https://github.com/keindev/codecolor.js.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"benchmark": "node --loader ts-node/esm src/__tests__/__benchmark__/benchmark.ts",
"build": "run-s build:*",
"build:scss": "sass src/styles/themes:lib/themes",
"build:ts": "rimraf lib && tsc --extendedDiagnostics",
"generate": "run-s generate:*",
"generate:changelog": "changelog generate --bump",
"generate:ghinfo": "ghinfo generate -d media -t utils",
"lint": "run-s lint:*",
"lint:eslint": "rimraf coverage && eslint src --ext .ts",
"lint:spell": "cspell -c .vscode/cspell.json --no-summary \"**/*.{js,ts,tsx,md,yml,json}\"",
"prepare": "run-s prepare:*",
"prepare:config": "ts-package-shared-config",
"prepare:docs": "docs-shared-config",
"prepare:husky": "husky install",
"prepare:vscode": "vscode-shared-config",
"release": "run-s prepare lint test build generate",
"test": "run-s test:*",
"test:jest": "node --experimental-vm-modules node_modules/.bin/jest"
},
"devDependencies": {
"@tagproject/ts-package-shared-config": "^11.0.1",
"@types/benchmark": "^2.1.2",
"@types/prismjs": "^1.26.0",
"benchmark": "^2.1.4",
"colors": "^1.4.0",
"highlight.js": "^11.8.0",
"microtime": "^3.1.1",
"prismjs": "^1.29.0",
"sass": "^1.66.1",
"ts-node": "^10.9.1"
}
}