forked from SyedNaqiRizvi/tedious-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.99 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
{
"name": "tedious-async",
"version": "1.0.9",
"description": "https://github.com/SyedNaqiRizvi/tedious-async.git",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "mocha --recursive \"test/**/*.spec.ts\" --require ts-node/register",
"coverage": "nyc npm run test",
"compile": "tsc --declaration",
"prebuild": "npm run compile",
"build": "npm run coverage",
"clean:app": "npm cache clean --force && rm -rf node_modules && rm -rf lib",
"clean:install": "npm run clean:app && npm install",
"prerelease": "npm run clean:install && npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SyedNaqiRizvi/tedious-async.git"
},
"keywords": [
"tedious",
"mssql",
"sql",
"azure",
"microsoft",
"db",
"database",
"orm",
"async",
"promise",
"typescript"
],
"author": "Naqi Rizvi",
"license": "MIT",
"bugs": {
"url": "https://github.com/SyedNaqiRizvi/tedious-async/issues"
},
"homepage": "https://github.com/SyedNaqiRizvi/tedious-async#readme",
"dependencies": {
"tedious": "^6.1.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/tedious": "^3.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"standard-version": "^6.0.1",
"ts-node": "^8.2.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"nyc": {
"require": "ts-node/register",
"all": true,
"include": [
"src"
],
"exclude": [
"src/**/types.ts",
"src/index.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text",
"text-summary",
"html"
],
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
}
}