This repository has been archived by the owner on Sep 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 3.39 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "docs-scaffold",
"version": "0.1.0",
"description": "Scaffold repo which documentations can fork from",
"main": "index.js",
"scripts": {
"build:style": "node lib/build-style.js",
"build:docs": "node lib/build-docs.js",
"build:docs:dev": "npm run build:docs -- --dev",
"build:cname": "echo docs.nbiot.engineering > ./build/CNAME",
"build": "gulp clean && gulp build && npm run build:cname",
"dev": "gulp watch",
"test": "npm run test:eslint && npm run test:stylelint && npm run test:lib && npm run test:docs",
"commitmsg": "validate-commit-msg",
"test:eslint": "eslint index.js lib/**/*.js script/**/*.js webpack.config.js",
"eslint:fix": "eslint index.js lib/**/*.js script/**/*.js webpack.config.js --fix",
"test:stylelint": "stylelint style/**/*.scss",
"test:lib": "mocha lib/**/**.spec.js",
"test:docs": "mocha test/**/**.spec.js",
"release": "standard-version --silent",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TelenorFrontend/docs-scaffold.git"
},
"author": "frontend@telenordigital.com",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TelenorFrontend/docs-scaffold/issues"
},
"homepage": "https://github.com/TelenorFrontend/docs-scaffold#readme",
"devDependencies": {
"@telenorfrontend/tn-conventions": "^0.5.0",
"babel-eslint": "^7.2.3",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"event-stream": "3.3.4",
"gulp-connect": "^5.6.1",
"husky": "^0.14.3",
"marked": "^0.3.19",
"metalsmith-broken-link-checker": "^1.0.1",
"mocha": "^4.1.0",
"remark": "^8.0.0",
"remark-lint": "^6.0.4",
"remark-preset-lint-recommended": "^3.0.2",
"rewire": "^2.5.2",
"standard-version": "^4.4.0",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-order": "^0.5.0",
"stylelint-scss": "^1.5.1",
"validate-commit-msg": "^2.12.2",
"vfile-reporter": "^4.0.0"
},
"dependencies": {
"@telenorfrontend/metalsmith-lunr": "^0.3.0",
"@telenorfrontend/metalsmith-swagger-ui": "^0.1.1",
"@telenorfrontend/swagger-ui-docs-preset": "^0.1.0",
"@telenorfrontend/tn-components": "^0.1.2",
"autoprefixer": "^7.2.6",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"barba.js": "^1.0.0",
"browserify": "^16.2.3",
"cheerio": "^1.0.0-rc.2",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.1",
"handlebars": "^4.0.12",
"highlight.js": "^10.4.1",
"lunr": "^2.3.5",
"metalsmith": "^2.3.0",
"metalsmith-collections": "^0.9.0",
"metalsmith-layouts": "^1.8.1",
"metalsmith-markdown": "^1.1.0",
"metalsmith-metallic": "^2.0.1",
"metalsmith-navigation": "^0.2.9",
"metalsmith-sitemap": "^1.2.2",
"mkdirp": "^0.5.1",
"node-normalize-scss": "^3.0.0",
"remark-html": "^6.0.1",
"rimraf": "^2.6.2",
"swagger-ui-dist": "^3.20.1",
"textversionjs": "^1.1.3",
"uglify-es": "^3.3.9",
"uglify-save-license": "^0.4.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}