-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
44 lines (44 loc) · 840 Bytes
/
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
{
"name": "chai-datetime",
"version": "1.8.1",
"keywords": [
"chai",
"chai-plugin",
"objects",
"date",
"time",
"browser",
"testing",
"jasmine"
],
"description": "date / time comparison matchers for chai",
"main": "chai-datetime.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/mguterl/chai-datetime.git"
},
"author": {
"name": "Mike Guterl",
"email": "[email protected]",
"url": "https://diminishing.org"
},
"license": "MIT",
"devDependencies": {
"husky": "^4.2.5",
"mocha": "^10.2.0",
"nodemon": "~0.6.23",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1"
},
"dependencies": {
"chai": ">1.9.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}