-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.54 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
{
"name": "@varandas/fetch-readme",
"version": "0.0.0-development",
"description": "Fetch a raw readme file from any public Github repository",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/AndreVarandas/fetch-readme.git"
},
"keywords": [
"github",
"readme"
],
"bugs": {
"url": "https://github.com/AndreVarandas/fetch-readme/issues"
},
"homepage": "https://github.com/AndreVarandas/fetch-readme#readme",
"author": "André Varandas <[email protected]>",
"license": "MIT",
"scripts": {
"commit": "npx git-cz",
"test": "jest --config jestconfig.json",
"build": "rimraf dist && tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/jest": "^25.1.0",
"cz-conventional-changelog": "3.1.0",
"husky": "^4.0.2",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"semantic-release": "^17.0.0",
"ts-jest": "^25.1.0",
"ts-node": "^8.0.3",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.4"
},
"dependencies": {
"axios": "^0.27.2",
"rimraf": "^3.0.2"
},
"files": [
"lib/**/*"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}