-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1020 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
{
"name": "node-iterable-api",
"version": "1.2.0",
"description": "Wrapper for Iterable API",
"main": "index.js",
"scripts": {
"test": "standard && cross-env ITERABLE_API_KEY=fake-key jest --coverage test/",
"tdd": "cross-env ITERABLE_API_KEY=fake-key jest --watch test/",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geoffdutton/iterable-api.git"
},
"keywords": [
"iterable",
"iterable.com"
],
"author": "Geoff Dutton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geoffdutton/iterable-api/issues"
},
"homepage": "https://github.com/geoffdutton/iterable-api",
"dependencies": {
"axios": "^0.25.0",
"debug": "^4.3.3"
},
"devDependencies": {
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"standard": "^17.0.0"
},
"standard": {
"env": [
"jest"
]
}
}