-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.13 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
{
"name": "node-paps",
"version": "0.4.0",
"description": "a nodejs paps.sn integration",
"main": "index.js",
"scripts": {
"build": "tsc",
"postbuild": "yarn test:coverage",
"start": "node dist/index.js",
"test": "jest",
"test:coverage": "yarn test --coverage"
},
"repository": "[email protected]:bcdbuddy/node-paps.git",
"author": "Babacar Cissé DIA <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/faker": "^4.1.11",
"@types/jest": "^25.2.1",
"dotenv": "^8.2.0",
"faker": "^4.1.0",
"jest": "^25.0.1",
"jest-mock-extended": "^1.0.8",
"moment": "^2.25.3",
"ts-jest": "^25.5.0",
"ts-node": "^8.10.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"engines": {
"yarn": "1.x",
"node": "12.x",
"npm": "6.x"
},
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
},
"bugs": {
"url": "https://github.com/bcdbuddy/node-paps/issues"
},
"homepage": "https://github.com/bcdbuddy/node-paps#readme"
}