-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.16 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
{
"name": "@jaredmcateer/uncouth",
"version": "3.3.3",
"author": "Jared McAteer <[email protected]>",
"contributors": [
{
"name": "yoyo930021 <[email protected]> (https://github.com/yoyo930021/vc2c)"
}
],
"packageMananger": "[email protected]",
"license": "MIT",
"main": "dist/lib/index.js",
"typings": "dist/types/src/index.d.ts",
"bin": {
"uncouth": "./bin/uncouth"
},
"engines": {
"node": ">=14"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE",
".version"
],
"devDependencies": {
"@semantic-release/git": "^9.0.1",
"@types/inquirer": "^7.3.3",
"@types/jest": "^26.0.24",
"@types/node": "^14.18.61",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"codecov": "^3.8.3",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"monaco-editor": "^0.20.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.8.8",
"semantic-release": "^17.4.7",
"ts-jest": "^26.5.6",
"typescript": "^4.9.5",
"vue": "^2.7.14"
},
"scripts": {
"format": "prettier --write '{,!(dist)/**/}*.{js,ts,vue,md,json}'",
"lint": "eslint . --ext .ts",
"build": "tsc -p tsconfig.compile.json",
"test": "pnpm build && jest --config jest.config.js",
"demo:prepare": "parcel build node_modules/monaco-editor/esm/vs/editor/editor.worker.js --no-source-maps -d demo-dist/ && parcel build node_modules/monaco-editor/esm/vs/language/typescript/ts.worker.js --no-source-maps -d demo-dist/",
"demo:build": "yarn demo:prepare && parcel build demo/index.html --no-source-maps -d demo-dist/ --public-url ./",
"prepack": "scripts/write-version.sh"
},
"dependencies": {
"commander": "^4.1.1",
"core-js": "^3.32.2",
"eslint": "^7.32.0",
"inquirer": "^7.3.3",
"ts-node": "^8.10.2",
"vue-template-compiler": "^2.7.14"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredmcateer/uncouth.git"
}
}