-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.13 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": "shs-docs",
"version": "0.4.3",
"description": "A documentation generator package designed for SHSDX OpMod developers.",
"private": false,
"bundledDependencies": [
"catharsis",
"marked",
"requizzle",
"taffydb",
"underscore",
"jsdoc-vue-component"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean:example": "rm -rf ./example/dist/*;",
"build:src": "gulp compile && npx webpack --config webpack.config.js",
"build:todo": "node node_modules/leasot/dist/cli/leasot.js -x --reporter vscode 'example/**/*.js' > example/TODO.md",
"build:jsdoc": "node_modules/jsdoc/jsdoc.js -c ./example/jsdocs.json",
"build:jsdoc2": "src/jsdoc/jsdoc.js -c ./example/jsdocs.json",
"build:jsdoc3": "src/jsdoc/jsdoc.js -c ./example/jsdocs.config.js",
"build:sheets": "node src/static/js/google-sheets/index.js",
"build": "npm run clean:example && npm run build:src && npm run build:todo && npm run build:jsdoc3"
},
"keywords": [
"documentation",
"jsdoc",
"javascript",
"markdown"
],
"repository": {
"type": "git",
"url": "https://github.com/williampansky/shs-docs.git"
},
"author": {
"name": "William Pansky",
"email": "william.pansky@sabre.com",
"url": "https://sabrehospitality.com/"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^8.6.0",
"axios": "^0.18.0",
"cheerio": "^1.0.0-rc.2",
"clipboard": "^2.0.1",
"cryptiles": "^4.1.2",
"cssnano": "^3.10.0",
"glob-fs": "^0.1.7",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.2.3",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"hoek": "^5.0.4",
"jsdoc": "^3.5.5",
"karma": "^3.0.0",
"leasot": "^7.0.0-rc.5",
"lodash": "^4.17.10",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.11.1",
"webpack-cli": "^3.0.2"
},
"dependencies": {
"catharsis": "^0.8.9",
"jsdoc-vue-component": "^2.2.4",
"marked": "^0.5.1",
"prism": "^4.1.2",
"requizzle": "^0.2.1",
"taffydb": "^2.7.3",
"uikit": "^3.0.0-rc.5",
"underscore": "^1.9.1"
}
}