forked from adobe/helix-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.96 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
99
100
101
102
{
"name": "@adobe/helix-pipeline",
"version": "5.5.4",
"description": "",
"repository": "https://github.com/adobe/helix-pipeline",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"semantic-release": "semantic-release",
"test": "nyc --reporter=text --reporter=lcov --check-coverage --branches 94 --statements 99 --lines 100 mocha",
"test-ci": "npm run lint && npm run test && codecov",
"lint": "npx eslint . && npm run types",
"types": "npm run docs && node bin/schema2ts.js",
"docs": "npx jsonschema2md -d src/schemas -o docs",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"commit": "git-cz"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@adobe/eslint-config-helix": "1.1.0",
"@adobe/jsonschema2md": "3.3.1",
"@pollyjs/adapter-fetch": "2.6.3",
"@pollyjs/adapter-node-http": "2.6.3",
"@pollyjs/core": "2.6.3",
"@pollyjs/persister-fs": "2.6.3",
"@semantic-release/changelog": "3.0.4",
"@semantic-release/git": "7.0.16",
"@semantic-release/github": "5.4.3",
"codecov": "3.6.1",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.0.2",
"eslint": "6.5.0",
"eslint-plugin-header": "3.0.0",
"eslint-plugin-import": "2.18.2",
"ghooks": "2.0.4",
"hastscript": "5.1.0",
"hyperscript": "2.0.2",
"istanbul": "1.0.0-alpha.2",
"json-schema-to-typescript": "7.1.0",
"lint-staged": "9.4.0",
"mocha": "6.2.1",
"mocha-junit-reporter": "1.23.1",
"nyc": "14.1.1",
"semantic-release": "15.13.24",
"sinon": "7.5.0",
"unist-builder": "1.0.4",
"unist-util-inspect": "4.1.4",
"unist-util-remove-position": "1.1.3"
},
"dependencies": {
"@adobe/helix-shared": "^3.0.0",
"@adobe/openwhisk-loggly-wrapper": "0.4.3",
"ajv": "^6.10.2",
"callsites": "^3.1.0",
"clone": "^2.1.2",
"dompurify": "^2.0.3",
"ferrum": "^1.2.0",
"fs-extra": "^8.1.0",
"github-slugger": "^1.2.1",
"js-yaml": "^3.13.1",
"jsdom": "^15.1.1",
"lodash": "^4.17.15",
"mdast-util-to-hast": "^6.0.1",
"mdast-util-to-string": "^1.0.6",
"mdurl": "^1.0.1",
"micromatch": "^4.0.2",
"object-hash": "^1.3.1",
"openwhisk": "^3.19.0",
"property-information": "^5.2.2",
"remark-parse": "^7.0.1",
"request": "^2.87.0",
"request-promise-native": "^1.0.7",
"retext": "^7.0.0",
"retext-smartypants": "^3.0.3",
"snyk": "^1.216.0",
"strip-markdown": "^3.1.0",
"unified": "^8.3.2",
"unist-util-map": "^1.0.5",
"unist-util-select": "^2.0.2",
"unist-util-visit": "^2.0.0",
"uri-js": "^4.2.2",
"url-parse": "^1.4.6",
"web-namespaces": "^1.1.3",
"winston": "^3.2.1",
"xml2js": "^0.4.19",
"xmlbuilder": "^13.0.2"
},
"snyk": true,
"lint-staged": {
"*.js": "eslint"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npx lint-staged"
}
}
}