-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1019 Bytes
/
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
{
"name": "node-scc-config",
"version": "1.2.1",
"author": "ZEXSM",
"description": "Configuring a Node.js application based on Spring Cloud Config",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint --ext .ts src test",
"example": "ts-node-dev --respawn --transpile-only example/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZEXSM/node-scc-config"
},
"keywords": [
"nodejs",
"typescript",
"decrypt",
"sping-cloud-config"
],
"devDependencies": {
"@types/express": "4.17.11",
"@types/jest": "26.0.23",
"@types/node": "15.0.1",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"eslint": "7.25.0",
"express": "4.17.1",
"jest": "26.6.3",
"nock": "^13.0.11",
"ts-jest": "26.5.5",
"ts-node-dev": "1.1.6",
"typescript": "4.2.4"
}
}