forked from customerio/customerio-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.52 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
{
"name": "customerio-node",
"description": "A node client for the Customer.io event API. http://customer.io",
"version": "3.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",
"dependencies": {},
"devDependencies": {
"@types/node": "^15.12.4",
"@types/sinon": "^10.0.2",
"ava": "^3.15.0",
"nyc": "^15.1.0",
"prettier": "^2.3.1",
"sinon": "^11.1.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.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",
"prepublish": "npm run build"
}
}