-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.27 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "node-pandoc-filter",
"version": "1.0.3",
"description": "Node.js Pandoc Filtering",
"license": "MIT",
"repository": "mu-io/node-pandoc-filter",
"bugs": "https://github.com/mu-io/node-pandoc-filter/issues",
"author": "jun-sheaf",
"engines": {
"node": ">=10"
},
"main": "lib/index.ts",
"directories": {
"lib": "lib",
"test": "tests",
"example": "tests/examples",
"doc": "docs"
},
"publishConfig": {
"access": "public"
},
"private": true,
"workspaces": [
"./lib"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint:spelling && yarn lint:ts && yarn lint:es --fix"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"docs": "typedoc --out docs --gitRevision main --mode library ./src/index.ts ./src/nodes/index.ts ",
"build": "tsc -b tsconfig.build.json",
"postbuild": "scripts/copy-assets.ts",
"clean": "yarn clean:ts && yarn clean:artifacts",
"clean:artifacts": "scripts/clean-artifacts.sh",
"clean:ts": "tsc -b tsconfig.build.json --clean",
"lint:spelling": "cspell --config=./.cspellrc.json \"{src,tests,scripts}/**/*.{md,ts,js}\"",
"lint:es": "eslint --ext .js,.ts ./src",
"lint:ts": "tsc -p tsconfig.json --noEmit",
"test": "jest --coverage --verbose",
"prerelease": "yarn build",
"release": "changeset publish"
},
"keywords": [
"node",
"pandoc",
"filter"
],
"devDependencies": {
"@changesets/cli": "^2.12.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.14.10",
"@types/request-promise-native": "^1.0.17",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.6.1",
"@typescript-eslint/types": "^4.9.0",
"cspell": "^4.1.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tsdoc": "^0.2.8",
"husky": "^4.2.5",
"jest": "^26.6.3",
"prettier": "2.2.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typedoc": "^0.17.0-3",
"typescript": "^4.1.2"
},
"dependencies": {
"array-flat-polyfill": "^1.0.1",
"get-stdin": "~8.0.0"
}
}