-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 KB
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
{
"name": "sysdoc",
"version": "1.0.8",
"description": "Documentation Generator for Design Systems",
"main": "index.js",
"scripts": {
"docs": "node docs",
"sass": "node-sass --source-map true --output-style compressed template/styles/styles.scss template/styles/styles.css",
"postcss": "postcss template/styles/styles.css -u autoprefixer -o template/styles/styles.css --map",
"styles": "run-s sass postcss",
"build": "run-s styles docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canvasplay/sysdoc.git"
},
"author": "canvasplay",
"license": "MIT",
"bugs": {
"url": "https://github.com/canvasplay/sysdoc/issues"
},
"homepage": "https://github.com/canvasplay/sysdoc#readme",
"dependencies": {
"comment-parser": "^0.5.0",
"fs-extra": "^6.0.1",
"glob": "^7.1.2",
"js-beautify": "^1.7.5",
"lodash": "^4.17.19",
"markdown-toc": "^1.2.0",
"marked": "^4.0.10"
},
"devDependencies": {
"autoprefixer": "^9.0.0",
"bootstrap": "^4.1.2",
"node-sass": "^7.0.0",
"npm-run-all": "^4.1.3",
"postcss": "^7.0.0",
"postcss-cli": "^5.0.1"
}
}