-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.37 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
{
"name": "@cull/schema",
"version": "0.0.3",
"description": "Data models for Cull.",
"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"
},
"keywords": [
"javascript",
"typescript",
"email",
"cull"
],
"author": "Jon Adams <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cull-email/schema/issues"
},
"homepage": "https://github.com/cull-email/schema#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/node": "^13.9.5",
"@types/uuid": "^7.0.2",
"ava": "^3.5.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"prettier": {
"singleQuote": true
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"failFast": true,
"files": [
"test/*.spec.ts"
],
"ignoredByWatcher": [
"build/**/*"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"build/*",
"test/*"
]
},
"dependencies": {
"uuid": "^7.0.2"
}
}