-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.22 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "baxipay",
"version": "1.0.0",
"description": "A NodeJs Wrapper for Baxipay APIs",
"main": "index.js",
"scripts": {
"dev": "npm run watch-ts",
"build-ts": "tsc && cp package.json dist/ && cp README.md dist/",
"quick-build": "npm run build-ts && npm run serve",
"serve": "SET NODE_ENV=development && node dist/src/server.js",
"start-dev": "SET NODE_ENV=development && nodemon dist/src/server.js",
"lint": "tslint src/**/*.ts -p tsconfig.json",
"lint:fix": "tslint --fix -c tslint.json 'src/**/*{.ts}",
"test": "cross-env NODE_ENV=test nyc --reporter=html ts-mocha --timeout 20000 -p src/tsconfig.json --recursive src/**/*.test.ts",
"test:unit": "cross-env NODE_ENV=test ts-mocha --timeout 20000 -p src/tsconfig.json src/test/unit/*.test.ts --exit",
"coverage": "nyc npm run test:unit",
"watch-ts": "tsc-watch --outDir ./dist --onSuccess \"npm run serve\" --lib ES2015 --skipLibCheck"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts",
"src/*.ts"
],
"exclude": [
"**/*.d.ts",
"typings"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text-summary"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"keywords": [
"baxipay",
"payments",
"nodejs",
"api-endpoints",
"rest-api"
],
"repository": {
"type": "git",
"url": "https://github.com/ogbiyoyosky/baxipay"
},
"author": "Emmanuel Ogbiyoyo <[email protected]> (https://nueljoe.com",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-http": "^3.0.5",
"@types/lodash": "^4.14.71",
"@types/mocha": "^5.2.5",
"@types/node": "^13.13.2",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"concurrently": "^3.5.0",
"http-status": "^1.3.1",
"istanbul": "^1.0.0-alpha.2",
"jest": "^23.6.0",
"mocha": "^5.2.0",
"nodemon": "^1.11.0",
"nyc": "^13.1.0",
"supertest": "^3.3.0",
"ts-jest": "^23.10.5",
"ts-mocha": "^2.0.0",
"ts-node": "^8.9.0",
"tslint": "5.12.1",
"typescript": "3.3.3"
},
"dependencies": {
"axios": "^0.19.2",
"cross-env": "^7.0.2",
"got": "^11.3.0"
}
}