forked from diplodoc-platform/transform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.14 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
{
"name": "@doc-tools/transform",
"version": "1.1.0",
"description": "Простой трансформер текста на Yandex Flavored Markdown в HTML",
"author": "YFM Team <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yandex-cloud/yfm-transform.git"
},
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"test": "jest --coverage",
"lint": "eslint \"**/*.js\"",
"css": "npm run css:compile && npm run css:prefix && npm run css:minify",
"css:compile": "node-sass src/scss/yfm.scss dist/css/yfm.css",
"css:prefix": "postcss dist/css/yfm.css --output dist/css/yfm.css",
"css:minify": "cleancss dist/css/yfm.css --output dist/css/yfm.min.css",
"js": "npm run js:compile && npm run js:minify",
"js:compile": "rollup -c",
"js:minify": "uglifyjs dist/js/yfm.js --output dist/js/yfm.min.js",
"dist": "npm run css && npm run js",
"precommit": "npm run lint && npm run test"
},
"dependencies": {
"chalk": "^4.0.0",
"highlight.js": "^10.0.3",
"markdown-it": "^10.0.0",
"markdown-it-attrs": "^3.0.2",
"markdown-it-deflist": "^2.0.3",
"markdown-it-imsize": "^2.0.1",
"markdown-it-meta": "^0.0.1",
"markdown-it-sup": "^1.0.0",
"slugify": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"autoprefixer": "^9.8.0",
"babel-eslint": "^10.0.3",
"clean-css-cli": "^4.3.0",
"eslint": "^7.1.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.2.3",
"jest": "^26.0.1",
"node-sass": "^4.14.1",
"postcss-cli": "^7.1.0",
"regenerator-runtime": "^0.13.1",
"rollup": "^2.13.1",
"rollup-plugin-babel": "^4.4.0",
"uglify-js": "^3.9.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"bugs": {
"url": "https://github.com/yandex-cloud/yfm-transform/issues"
},
"homepage": "https://github.com/yandex-cloud/yfm-transform#readme",
"keywords": [
"markdown",
"yandex",
"docs",
"yfm",
"documentation",
"tool",
"tools",
"generator"
]
}