forked from silentroach/tweet.md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "tweet.md",
"version": "3.0.1",
"description": "Render tweet to markdown",
"main": "index.js",
"scripts": {
"examples": "node examples.js",
"preversion": "npm run examples",
"prepublish": "npm run test && npm run examples",
"coverage": "jest --coverage",
"test": "jest"
},
"files": [
"index.js"
],
"keywords": [
"twitter",
"tweet",
"markdown",
"md"
],
"homepage": "https://github.com/silentroach/tweet.md",
"repository": {
"type": "git",
"url": "https://github.com/silentroach/tweet.md"
},
"author": "Igor Kalashnikov <[email protected]> (https://github.com/silentroach)",
"contributors": [
"Vladimir Starkov <[email protected]> (https://github.com/iamstarkov)",
"Martin Giger <[email protected]> (https://github.com/freaktechnik)"
],
"license": "MIT",
"devDependencies": {
"coveralls": "^3.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"pretty-quick": "^3.1.0"
},
"engines": {
"node": ">=10.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}