-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 1.87 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
{
"name": "tweet.md",
"version": "4.1.0",
"description": "Render tweet to markdown",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"examples": "ts-node examples.ts",
"preversion": "npm run examples",
"prepublish": "npm run test && npm run examples && npm run build",
"build": "parcel build --no-content-hash --no-cache src/index.ts --detailed-report",
"coverage": "jest --coverage",
"test": "jest",
"prepare": "husky install"
},
"files": [
"dist/*"
],
"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",
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@parcel/config-default": "^2.11.0",
"@parcel/packager-ts": "^2.11.0",
"@parcel/transformer-typescript-types": "^2.11.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.11",
"@types/node": "^22.3.0",
"husky": "^9.0.6",
"jest": "^29.1.2",
"json5": "^2.2.3",
"lint-staged": "^15.2.0",
"parcel": "^2.11.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"prettier": {
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"^node:.*$",
"<THIRD_PARTY_MODULES>",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
}
}