generated from diplodoc-platform/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "@diplodoc/directive",
"version": "0.3.1",
"description": "Directive syntax for Diplodoc platform",
"main": "build/index.js",
"types": "build/index.d.ts",
"homepage": "https://diplodoc.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/diplodoc-platform/directive.git"
},
"bugs": {
"url": "https://github.com/diplodoc-platform/diplodoc/issues"
},
"author": "",
"license": "MIT",
"files": [
"build"
],
"scripts": {
"build": "run-p build:*",
"build:js": "./esbuild/build.mjs",
"build:declarations": "tsc --project tsconfig.publish.json --emitDeclarationOnly --outDir ./build",
"test": "cd tests && npm ci && npm test -- --ci",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"lint": "lint update && lint",
"lint:fix": "lint update && lint fix",
"pre-commit": "lint update && lint-staged",
"prepare": "husky"
},
"dependencies": {
"markdown-it-directive": "2.0.5"
},
"devDependencies": {
"@diplodoc/lint": "^1.2.0",
"@diplodoc/tsconfig": "^1.0.2",
"@types/markdown-it": "^13.0.9",
"esbuild": "^0.22.0",
"markdown-it": "^13.0.2",
"npm-run-all": "^4.1.5",
"typescript": "^5.5.3"
}
}