-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "global-countries",
"version": "2.1.2",
"description": "",
"main": "dist/index.js",
"scripts": {
"build-ts": "tsc",
"build": "npm run build-ts",
"debug": "npm run build && npm run watch-debug",
"serve": "node dist/index.js",
"start": "npm run serve",
"test": "jest --config jest.config.ts --detectOpenHandles",
"test:coverage": "env-cmd -f .env.test jest --forceExit --coverage --verbose",
"dev": "nodemon src/index.ts",
"watch-test": "npm run test -- --watchAll",
"watch-ts": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoodnessEzeokafor/global-countries-node-sdk.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GoodnessEzeokafor/global-countries-node-sdk/issues"
},
"homepage": "https://github.com/GoodnessEzeokafor/global-countries-node-sdk#readme",
"dependencies": {
"express": "^4.17.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.173",
"@types/node": "^16.9.4",
"chai": "^4.3.4",
"env-cmd": "^10.1.0",
"jest": "^27.2.1",
"nodemon": "^2.0.12",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}