forked from lswartsenburg/klaviyo-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.64 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
{
"name": "klaviyo-node",
"description": "Node API for Klaviyo",
"version": "1.0.8",
"author": {
"name": "Lucas Swartsenburg",
"email": "[email protected]",
"url": "www.itso.io"
},
"engines": {
"node": "^6.14.0 || ^8.10.0 || >=9.10.0"
},
"repository": "https://github.com/itsolucas/klaviyo-node",
"homepage": "https://github.com/itsolucas/klaviyo-node#readme",
"bugs": {
"url": "https://github.com/owner/project/issues",
"email": "[email protected]"
},
"keywords": [
"klaviyo",
"email",
"klaviyo.com",
"client"
],
"files": [
"lib/index.js"
],
"main": "lib/index.js",
"license": "Apache-2.0",
"scripts": {
"lint": "node ./node_modules/eslint/bin/eslint.js --ext js lib",
"jsdoc-to-markdown": "node ./node_modules/jsdoc-to-markdown/bin/cli.js --files lib/* > docs/README.md",
"docs": "npm run-script jsdoc-to-markdown && node ./node_modules/markdown-spellcheck/bin/mdspell -r --en-us \"docs/*.md\" \"README.md\"",
"release": "yarn run np",
"test": "./node_modules/jest/bin/jest.js --coverage",
"spelling": "node ./node_modules/markdown-spellcheck/bin/mdspell --en-us \"docs/*.md\" \"README.md\"",
"build": "npm run-script test && npm run-script lint && npm run-script docs"
},
"dependencies": {
"assert": "^2.0.0",
"axios": "^0.19.0",
"axios-retry": "^3.1.2",
"lodash": "4.17.13",
"winston": "^3.2.1",
"yarn": ">=1.17.3"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-google": "^0.13.0",
"http-server": "^0.11.1",
"jest": "^24.8.0",
"jsdoc-to-markdown": "^5.0.0",
"markdown-spellcheck": "^1.3.1"
}
}