forked from algoan/rest-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.41 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@algoan/rest",
"version": "1.9.3",
"description": "Algoan APIs SDK for NodeJS",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"clean-all": "rimraf dist/ node_modules/ coverage/ docs/",
"build": "tsc -p .",
"deploy:doc": "gh-pages --dist docs/ --dotfiles --message 'Update documentation [skip ci]'",
"docs": "typedoc --out docs src/Algoan.ts --excludePrivate --excludeNotExported",
"commit": "git-cz",
"cover": "nyc --reporter=html --reporter=lcov npm test",
"lint": "eslint ./src/**/*.ts --fix",
"pretest": "npm run lint && npm run build",
"prettier": "prettier --write '{src,test}/**/*.ts'",
"semantic-release": "semantic-release",
"test": "jest",
"test:cov": "npm test -- --coverage"
},
"files": [
"dist/src"
],
"keywords": [
"node",
"typescript",
"rest-api"
],
"author": "ccoeurderoy",
"license": "ISC",
"lint-staged": {
"src/**/*.ts": [
"npm run lint"
],
"{src,test}/**/*.ts": [
"prettier --list-different \"{src,test}/**/*.ts\""
]
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"cache": false,
"extension": [
".ts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@algoan/eslint-config": "^1.0.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@types/commander": "^2.12.2",
"@types/jest": "^26.0.0",
"commander": "^5.1.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"delay": "^4.3.0",
"eslint": "^7.2.0",
"gh-pages": "^3.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.10",
"nock": "^12.0.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.8",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.17.7",
"typescript": "^3.9.5"
},
"dependencies": {
"axios": "^0.19.2"
},
"publishConfig": {
"access": "public"
}
}