-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.11 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
{
"name": "carbonldp-ts-docs-engine",
"version": "1.1.0",
"description": "Engine to generate API documentation for Carbon LDP TypeScript projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:ts": "tsc --build tsconfig.json",
"build:semantic": "npm run --prefix node_modules/fomantic-ui build",
"build:copy-files": "ncp src/assets dist/assets && ncp src/templates dist/templates",
"build": "rimraf dist/ && npm-run-all build:*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/CarbonLDP/carbonldp-ts-docs-engine.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "/~https://github.com/CarbonLDP/carbonldp-ts-docs-engine/issues"
},
"homepage": "/~https://github.com/CarbonLDP/carbonldp-ts-docs-engine",
"author": {
"name": "Rodolfo Aguirre",
"email": "rodolfo.aguirre@base22.com"
},
"contributors": [
{
"name": "Iñaki Janeiro",
"email": "inaki.janeiro@base22.com"
}
],
"dependencies": {
"autoprefixer": "^9.6.1",
"css-loader": "^1.0.0",
"dgeni": "^0.4.12",
"dgeni-packages": "^0.28.1",
"favicons-webpack-plugin": "^1.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^4.0.0-beta.8",
"image-webpack-loader": "^4.3.1",
"jquery": "^3.4.1",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.7.2",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prismjs": "^1.17.1",
"sass-loader": "^7.1.0",
"tslib": "^1.9.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^1.1.1",
"webpack": "^4.39.3",
"webpack-merge": "^4.2.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/marked": "^0.6.5",
"@types/node": "^10.14.18",
"@types/nunjucks": "^3.1.2",
"@types/prismjs": "^1.16.0",
"@types/webpack": "^4.39.7",
"fomantic-ui": "^2.7.8",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"ts-node": "^5.0.1",
"typescript": "^3.5.3"
},
"files": [
"dist/",
"**/webpack.*.js"
]
}