generated from Dissfall/ts-project-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.09 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
73
74
75
76
77
78
79
80
81
82
{
"name": "active-campaign-v1",
"version": "1.1.0",
"description": "Wrapper for Active Campaign API v1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.{js,d.ts,map}"
],
"scripts": {
"start": "npm run build && npm run serve",
"serve": "node dist",
"build": "node_modules/.bin/tsc",
"lint": "./node_modules/.bin/eslint 'src/**/*.{ts}' --fix",
"test": "jest --coverage",
"prepublish": "yarn build",
"doc": "./node_modules/.bin/typedoc --mode file"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/faker": "^4.1.9",
"@types/jest": "^25.1.2",
"@types/lodash": "^4.14.149",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"cz-conventional-changelog": "3.0.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"faker": "^4.1.0",
"husky": "^4.0.10",
"jest": "^25.1.0",
"lint-staged": "^10.0.2",
"prettier": "^1.19.1",
"ts-jest": "^25.2.0",
"typedoc": "^0.16.11"
},
"dependencies": {
"@types/node": "^13.1.7",
"@types/superagent": "^4.1.5",
"lodash": "^4.17.15",
"superagent": "^5.2.1",
"tsc": "^1.20150623.0",
"typescript": "^3.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/lint-staged",
"commit-msg": "./node_modules/.bin/commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{ts}": [
"yarn lint",
"prettier --write"
]
},
"repository": "git@github.com:Dissfall/active-campaign-v1.git",
"author": "dissfall <dissfalling@gmail.com>",
"license": "MIT",
"keywords": [
"active campaign",
"active hosted",
"API",
"API wrapper",
"active",
"campaign",
"email marketing",
"email",
"newsletter",
"contact"
]
}