forked from customerio/customerio-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.63 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
{
"name": "customerio-node",
"description": "A node client for the Customer.io event API. http://customer.io",
"version": "4.1.1",
"author": "Customer.io (https://customer.io)",
"contributors": [
"Alvin Crespo (https://github.com/alvincrespo)",
"Jeff Escalante (https://github.com/jescalan)",
"Artem Ivanov (https://github.com/ivanovart)",
"Nuno Sousa (https://github.com/nunofgs)"
],
"ava": {
"verbose": true,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"exclude": [
"**/*.d.ts",
"coverage/",
"test/"
],
"reporter": [
"text"
],
"cache": false,
"check-coverage": true,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
},
"bugs": "https://github.com/customerio/customerio-node/issues",
"devDependencies": {
"@types/node": "^17.0.36",
"@types/sinon": "^10.0.2",
"ava": "^5.0.1",
"husky": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"sinon": "^14.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"homepage": "https://github.com/customerio/customerio-node",
"keywords": [
"customerio",
"node"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "customerio/customerio-node",
"scripts": {
"test": "nyc ava",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"version": "node update-version.js"
}
}