-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.19 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
83
84
85
{
"name": "@nxcd/datavalid-sdk",
"version": "2.0.0",
"description": "DataValid SDK for NodeJS",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf ./dist",
"test": "mocha --timeout 10000 --require ts-node/register --require source-map-support/register --recursive tests/**/*.test.ts",
"coverage": "nyc mocha --timeout 10000 --require ts-node/register --require source-map-support/register --recursive tests/**/*.test.ts",
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"build:debug": "npm run clean && npm run build -- --sourceMap",
"build:clean": "npm run clean && npm run build",
"build:watch": "tsc -w",
"build:start": "npm run build:clean && npm start",
"start": "node dist/index.js",
"start:debug": "concurrently -s all \"tsc -w\" \"DEBUG=expresso:*,gg:* nodemon dist/index.js\"",
"prepare": "npm run build:clean"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"dist/**/*.*",
"src/index.ts",
"src/presentation/server.ts",
"coverage",
"**/*.test.ts"
],
"reporter": [
"text",
"html",
"lcov"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/nxcd/datavalid-node-sdk.git"
},
"keywords": [
"datavalid",
"serpro",
"sdk"
],
"author": "Lucas Santos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nxcd/datavalid-node-sdk/issues"
},
"homepage": "https://github.com/nxcd/datavalid-node-sdk#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/nock": "^9.3.1",
"@types/node": "^11.13.4",
"chai": "^4.2.0",
"concurrently": "^5.3.0",
"husky": "^1.3.1",
"lodash.merge": "^4.6.2",
"mocha": "^8.1.3",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"ts-node": "^8.1.0",
"tslint": "^6.1.3",
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.3"
},
"dependencies": {
"axios": "^0.20.0"
},
"files": [
"dist/**/*"
]
}