-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
42 lines (42 loc) · 867 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
{
"name": "pandoc-filter",
"version": "2.2.0",
"description": "Pandoc filtering for Node.js",
"license": "MIT",
"repository": "mvhenderson/pandoc-filter-node",
"bugs": "https://github.com/mvhenderson/pandoc-filter-node/issues",
"author": "Mike Henderson",
"engines": {
"node": ">=7.6.0"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "./node_modules/.bin/mocha -R spec -s 125",
"prepare": "tsc"
},
"keywords": [
"pandoc",
"filter",
"pandocfilter"
],
"devDependencies": {
"@types/node": "^13.13.0",
"mocha": "7.1.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.5",
"should": "~13.2.3",
"typescript": "^3.8.3"
},
"dependencies": {
"get-stdin": "~7.0.0"
},
"prettier": {
"semi": true,
"tabWidth": 4,
"useTabs": true,
"trailingComma": "all",
"printWidth": 80,
"endOfLine": "lf"
}
}