-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
84 lines (84 loc) · 2.25 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": "node-hilo",
"version": "6.0.0",
"homepage": "https://github.com/LeanKit-Labs/node-hilo",
"description": "NHibernate-style hi/lo ID generator for node.js & SQL Server",
"author": "Jim Cowart",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git://github.com/LeanKit-Labs/node-hilo.git"
},
"contributors": [
{
"name": "Jim Cowart",
"email": "jim@ifandelse.com",
"url": "http://ifandelse.com"
},
{
"name": "Matt Dunlap",
"email": "matt.dunlap@leankit.com",
"url": "https://github.com/prestaul"
}
],
"main": "./src/index.js",
"keywords": [
"hilo",
"hi-lo",
"hi/lo",
"NHibernate"
],
"scripts": {
"lint": "eslint --fix ./",
"pretest": "npm run lint",
"test": "npm run cover",
"test:only": "NODE_ENV=test mocha --exit -r spec/setup -R spec 'spec/**/*.spec.js'",
"test:watch": "nodemon --exec \"NODE_ENV=test mocha --exit -r spec/setup -R progress 'spec/**/*.spec.js' || true\" -e js,json,sql",
"cover": "c8 -r text-summary -r html -- npm run test:only",
"cover:show": "open \"file://$PWD/coverage/index.html\""
},
"dependencies": {
"big-integer": "^1.6.51",
"machina": "^4.0.2",
"tedious": "^18.1.0"
},
"devDependencies": {
"c8": "^9.1.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint-config-leankit": "^7.0.0",
"execa": "^8.0.1",
"mocha": "^10.4.0",
"nodemon": "^3.1.0",
"proxyquire": "^2.1.3",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0"
},
"engines": {
"node": ">=20.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"files": [
"src",
"LICENSE"
],
"c8": {
"exclude": [
"coverage",
"spec",
".eslintrc.js",
"index.d.ts"
],
"sourceMap": false,
"instrument": true,
"all": true
}
}