-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 891 Bytes
/
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
{
"name": "pandoc-url2cite",
"version": "0.6.16",
"homepage": "https://github.com/phiresky/pandoc-url2cite",
"main": "dist/index.js",
"bin": {
"pandoc-url2cite": "dist/pandoc-url2cite.js"
},
"dependencies": {
"node-fetch": "^2.6.1",
"pandoc-filter": "^2.0.2"
},
"devDependencies": {
"@types/node": "^15.12.4",
"@types/node-fetch": "^2.5.10",
"husky": "^6.0.0",
"lint-staged": ">=11.0.0",
"prettier": "^2.3.1",
"ts-node": "^10.0.0",
"typescript": "^4.4.0-dev.20210718"
},
"prettier": {
"tabWidth": 4,
"useTabs": true,
"trailingComma": "all"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": "prettier --write"
},
"engines": {
"node": ">=14"
},
"engineStrict": true
}