-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "@codearts/core",
"keywords": [
"huawei",
"codearts",
"plugin"
],
"version": "0.5.1",
"license": "SEE LICENSE IN LICENSE",
"description": "core plugin api of cloudide frontend and backend",
"repository": {
"type": "git",
"url": "https://github.com/huaweicloud/cloudide-plugin-core.git"
},
"main": "",
"files": [
"lib/browser",
"lib/common",
"lib/node"
],
"devDependencies": {
"@codearts/plugin": "^0.1.4",
"@types/cheerio": "^0.22.16",
"@types/ejs": "^3.1.1",
"@types/mocha": "^8.0.2",
"@types/pug": "^2.0.4",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^9.2.1",
"prettier": "^2.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.4.0"
},
"dependencies": {
"@cloudide/messaging": "^0.1.0",
"@cloudide/nls": "latest",
"cheerio": "^1.0.0-rc.3",
"ejs": "^3.1.8",
"pug": "^3.0.0",
"reflect-metadata": "^0.1.13",
"uuid": "^3.3.3"
},
"scripts": {
"prepare": "npm run eslint && npm run build && npm run test",
"build": "tsc",
"eslint": "eslint src/**/*.{js,ts,tsx} --quiet --fix",
"test": "mocha"
}
}