-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
{
"name": "slate-mark",
"version": "0.0.6",
"description": "Slate to Markdown",
"author": "palerdot <[email protected]>",
"repository": "https://github.com/palerdot/slate-mark",
"license": "MIT",
"keywords": [
"slate",
"markdown",
"converter",
"plate",
"slate-plugins",
"remark",
"typescript"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/index.ts",
"prepare-build": "tsc -p tsconfig.json",
"build": "npm run prepare-build && npm run copy",
"install-peers": "install-self-peers -- --ignore-scripts",
"prepare": "npm run build && husky install",
"release": "np",
"dryrun": "npm pack",
"copy": "cp package.json dist/ && cp README.md dist/"
},
"devDependencies": {
"@team-griffin/install-self-peers": "^1.1.1",
"@types/jest": "^26.0.21",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@udecode/plate-core": "^1.0.0",
"esbuild": "^0.11.11",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.0",
"jest": "^26.6.3",
"np": "^7.5.0",
"prettier": "^2.3.2",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.3"
},
"peerDependencies": {
"@udecode/plate-core": "^1.0.0"
},
"engines": {
"node": ">=12"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"arrowParens": "avoid"
}
}