This repository has been archived by the owner on Aug 31, 2022. It is now read-only.
generated from adobe/franklin-library
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.84 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
{
"name": "@adobe/helix-vulcain-filters",
"version": "1.0.0",
"description": "Vulcain-like fields filters for OpenWhisk web actions",
"main": "src/index.js",
"scripts": {
"test": " nyc --reporter=text --reporter=lcov --check-coverage --branches 100 --statements 100 --lines 100 mocha",
"test-ci": "nyc --reporter=text --reporter=lcov --check-coverage --branches 100 --statements 100 --lines 100 mocha --reporter xunit --reporter-options output=./junit/test-results.xml && codecov",
"lint": "./node_modules/.bin/eslint .",
"semantic-release": "semantic-release",
"docs": "npx jsdoc2md -c .jsdoc.json --files 'src/*.js' > docs/API.md",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-vulcain-filters"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-vulcain-filters/issues"
},
"homepage": "https://github.com/adobe/helix-vulcain-filters#readme",
"dependencies": {
"json-pointer": "^0.6.0",
"traverse": "^0.6.6"
},
"devDependencies": {
"@adobe/eslint-config-helix": "1.3.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"ajv": "8.11.0",
"codecov": "3.8.3",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.23.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.26.0",
"istanbul": "1.1.0-alpha.1",
"jsdoc-to-markdown": "7.1.1",
"junit-report-builder": "3.0.1",
"lint-staged": "13.0.3",
"lodash": "4.17.21",
"mocha": "10.0.0",
"nyc": "15.1.0",
"semantic-release": "19.0.5"
},
"lint-staged": {
"*.js": "eslint"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npx lint-staged"
}
}
}