-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.51 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
{
"name": "docsify-nomnoml",
"version": "1.0.0",
"description": "a docsify plugin to render nomnoml code fences",
"author": "Myles J. <[email protected]>",
"license": "MIT",
"keywords": [
"docsify",
"plugin",
"nomnoml",
"noml",
"uml"
],
"homepage": "https://mylesj.github.io/docsify-nomnoml",
"bugs": "https://github.com/mylesj/docsify-nomnoml/issues",
"repository": "github:mylesj/docsify-nomnoml",
"files": [
"dist/"
],
"type": "module",
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"scripts": {
"prepublishOnly": "$npm_execpath run build",
"postinstall": "husky install",
"lint-staged": "lint-staged",
"clean": "rimraf ./dist/*",
"prebuild": "$npm_execpath run clean",
"build": "rollup -c ./rollup.config.js",
"test": "jest -c ./jest.config.json --verbose",
"docs": "docsify serve docs"
},
"peerDependencies": {
"graphre": "*",
"nomnoml": "*"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.1",
"@types/marked": "*",
"docsify-cli": "^4.4.3",
"graphre": "^0.1.3",
"husky": "^7.0.2",
"jest": "^27.1.0",
"lint-staged": "^11.1.2",
"nomnoml": "*",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {}
}