-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 874 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 874 Bytes
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
{
"name": "@letscollab/midway-nacos",
"description": "midway nacos component",
"version": "0.0.2-alpha.3",
"main": "src/index.ts",
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"test": "node --require=ts-node/register ../../node_modules/jest/bin/jest.js",
"cov": "node --require=ts-node/register ../../node_modules/.bin/jest --coverage --forceExit"
},
"keywords": [
"midway",
"nacos"
],
"author": "Nawbc",
"license": "Apache-2.0",
"devDependencies": {
"@midwayjs/core": "^3.3.0",
"@midwayjs/decorator": "^3.1.6",
"@midwayjs/mock": "^3.3.0",
"typescript": "^4.5.4"
},
"dependencies": {
"nacos": "^2.2.1"
}
}