-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "@aquilacms/sendcloud",
"version": "1.0.0",
"description": "implementation of sendcloud API",
"private": false,
"main": "build/sendcloud.js",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"keywords": [],
"author": "NextSourcia <[email protected]>",
"contributors": [
"Gérard Le Cloërec <[email protected]>"
],
"license": "MIT",
"dependencies": {
"axios": "^0.20.0"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/got": "^9.6.11",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"prettier": "^2.1.0",
"typescript": "^3.9.4"
},
"files": [
"build"
],
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint"
}
}
}