This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "@nodepit/mailchimp",
"version": "2.1.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"clean": "rimraf ./coverage ./dist junit.xml",
"lint": "yarn lint:code && yarn lint:markdown",
"lint:code": "eslint --ext .ts ./lib ./test",
"lint:markdown": "markdownlint *.md",
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"preversion": "run-s clean lint test build"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^10",
"@types/superagent": "^4.1.13",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.0",
"jest-junit": "^12.2.0",
"markdownlint": "^0.24.0",
"markdownlint-cli": "^0.28.1",
"nock": "^13.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"superagent": "^8.0.6"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodePit/node-mailchimp.git"
},
"keywords": [
"mailchimp"
],
"author": "nodepit.com",
"bugs": {
"url": "https://github.com/NodePit/node-mailchimp/issues"
},
"homepage": "https://github.com/NodePit/node-mailchimp",
"description": "Node.js client for managing Mailchimp subscriptions",
"engines": {
"node": ">=10"
}
}