-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.51 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
{
"name": "@cull/imap",
"version": "0.3.1",
"description": "A simple, configurable javascript interface exposing mailboxes and messages via IMAP.",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"scripts": {
"build": "make build",
"watch": "make watch",
"test": "make test",
"lint": "make lint",
"coverage": "make coverage"
},
"repository": {
"type": "git",
"url": "[email protected]:cull-email/imap.git"
},
"keywords": [
"javascript",
"typescript",
"imap",
"cull"
],
"author": "Jon Adams <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cull-email/imap/issues"
},
"homepage": "https://github.com/cull-email/imap#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/node": "^13.13.9",
"@types/uuid": "^7.0.4",
"ava": "^3.8.2",
"nyc": "^15.0.1",
"prettier": "^1.19.1",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.3"
},
"prettier": {
"singleQuote": true
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"failFast": true,
"files": [
"src/**/*.test.ts"
],
"ignoredByWatcher": [
"build/**/*"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"build/*",
"test/*"
]
},
"dependencies": {
"uuid": "^8.1.0"
}
}