forked from Kong/docs.konghq.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.66 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
{
"private": true,
"version": "1.0.0",
"name": "docs.konghq.com",
"homepage": "https://docs.konghq.com",
"repository": "Kong/docs.konghq.com",
"license": "proprietary",
"scripts": {
"start": "gulp",
"dev": "gulp dev",
"pdk-docs": "KONG_PATH=${KONG_PATH:=} KONG_VERSION=${KONG_VERSION:=} gulp pdk-docs",
"test": "jest",
"test:smoke": "npm run test"
},
"standard": {
"ignore": [
"dist/**",
"vendor/**",
"node_modules/**",
"Dockerfile",
"gulpfile.js",
"app/_assets/javascripts/*",
"app/_redirects"
]
},
"devDependencies": {
"broken-link-checker": "0.7.8",
"browser-sync": "2.29.3",
"cheerio": "1.0.0-rc.12",
"cloudflare": "2.9.1",
"del": "6.1.1",
"fancy-log": "2.0.0",
"font-awesome": "4.7.0",
"gulp": "4.0.2",
"gulp-autoprefixer": "8.0.0",
"gulp-clean-css": "4.3.0",
"gulp-concat": "2.6.1",
"gulp-if": "3.0.0",
"gulp-less": "5.0.0",
"gulp-load-plugins": "2.0.8",
"gulp-minify": "3.1.0",
"gulp-plumber": "1.2.1",
"gulp-rename": "2.0.0",
"gulp-replace": "^1.1.3",
"gulp-size": "4.0.1",
"gulp-sourcemaps": "3.0.0",
"jest": "29.6.1",
"lodash": "4.17.21",
"node-fetch": "2.6.12",
"prettier": "3.0.0",
"run-sequence": "2.2.1",
"skeleton-css": "2.0.4"
},
"jest": {
"testMatch": [
"**/tests/**.test.js"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/__utils__/customMatchers.js",
"<rootDir>/tests/__utils__/fetchPage.js"
],
"testPathIgnorePatterns": [
"/__utils__/"
]
},
"dependencies": {
"@segment/analytics-next": "1.53.0",
"js-cookie": "^3.0.1"
}
}