forked from antonmedv/codejar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "codejar-async",
"description": "An embeddable code editor for the browser",
"keywords": [
"codejar",
"code-editor"
],
"version": "4.3.1",
"type": "module",
"main": "./dist/codejar.js",
"types": "./dist/codejar.d.ts",
"files": [
"dist/codejar.*"
],
"scripts": {
"ls": "npm i --package-lock-only && npm ls --package-lock-only --all --omit=dev",
"lint:ts": "tsc --noEmit && eslint --cache .",
"lint:css": "stylelint *.css",
"lint:md": "markdownlint-cli2 '**/*.md'",
"lint": "npm run lint:ts && npm run lint:css && npm run lint:md",
"build": "rm -rf dist/; tsc && eslint --no-config-lookup -c eslint.dist.mjs dist/*.js",
"server": "npm run test:end; http-server .. -c-1 --cors -s &",
"test:end": "pkill -x http-server"
},
"devDependencies": {
"@bhsd/code-standard": "^2.5.0",
"@stylistic/stylelint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^8.59.4",
"eslint": "^10.4.0",
"http-server": "^14.1.1",
"markdownlint-cli2": "^0.22.1",
"stylelint": "^17.12.0",
"stylelint-config-recommended": "^18.0.0",
"stylelint-plugin-use-baseline": "^1.4.2",
"typescript": "^6.0.3",
"wikiparser-node": "^1.40.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bhsd-harry/codejar-async.git"
},
"contributors": [
"Anton Medvedev <anton@medv.io>",
"Julian Poemp",
"Bhsd"
],
"homepage": "https://github.com/bhsd-harry/codejar-async#readme"
}