-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "contreebutors",
"version": "0.0.0-development",
"description": "🌳 A simple contributors list for your projects.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/doitadrian/contreebutors.git"
},
"author": "Adrian Smijulj",
"license": "MIT",
"bugs": {
"url": "https://github.com/doitadrian/contreebutors/issues"
},
"keywords": [
"contributors"
],
"homepage": "https://github.com/doitadrian/contreebutors#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"bin": {
"contreebutors": "dist/bin/contreebutors.js"
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint --fix",
"jest",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^25.2.3",
"adio": "^1.1.1",
"babel-jest": "^26.0.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.8",
"typescript": "^3.9.5"
},
"scripts": {
"test": "jest",
"build": "rimraf ./dist *.tsbuildinfo && babel src -d dist --ignore __tests__/* --source-maps --copy-files --extensions \".ts\"",
"watch": "babel src -d dist --source-maps --copy-files --extensions \".ts\" --watch",
"postbuild": "cp package.json LICENSE README.md dist/ && tsc -p tsconfig.json"
},
"dependencies": {
"chalk": "^4.0.0",
"got": "^11.3.0",
"load-json-file": "^6.2.0",
"lodash.chunk": "^4.2.0",
"write-json-file": "^4.3.0",
"yargs": "^15.3.1"
}
}