-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.28 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
{
"name": "@earnestfintechdev/inventory-client",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "NODE_OPTIONS=--enable-source-maps mocha --exit --file dist/tests/index.test.js",
"test-w": "set NODE_OPTIONS=--enable-source-maps && set CI=true && mocha --exit dist/tests/index.test.js",
"watch": "tsc -w",
"dev": "NODE_OPTIONS=--enable-source-maps nodemon -L -w ./dist -w ./src -w docs/build/docs.yaml dist/index.js",
"dev-w": "set NODE_OPTIONS=--enable-source-maps && nodemon -L -w dist -w src dist/index.js",
"start": "node dist/index.js",
"coverage": "c8 --all --reporter=lcov npm run test",
"coverage-w": "tsc && c8 --reporter=lcov npm run test-w "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/chai": "^4.3.4",
"@types/node": "^18.11.9",
"axios": "^1.2.0",
"axios-mock-adapter": "^1.21.2",
"c8": "^7.12.0",
"chai": "^4.3.7",
"events": "^3.3.0",
"mocha": "^10.1.0",
"nock": "^13.2.9",
"nodemon": "^2.0.20"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/mocha": "^10.0.0",
"typescript": "^5.0.4"
},
"repository": {
"url": "https://github.com/EarnestFintechDev/inventory-client.git"
}
}