-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.75 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
{
"name": "@trieloff/helix-micropub-endpoint",
"version": "1.5.0",
"private": true,
"description": "Helix MicroPub Endpoint",
"main": "src/index.js",
"scripts": {
"test": " nyc --reporter=text --reporter=lcov --check-coverage --branches 100 --statements 100 --lines 100 mocha -i -g 'Post-Deploy'",
"test-ci": "nyc --reporter=text --reporter=lcov --check-coverage --branches 100 --statements 100 --lines 100 mocha -i -g 'Post-Deploy' --reporter xunit --reporter-options output=./junit/test-results.xml && codecov",
"test-postdeploy": "mocha --reporter xunit --reporter-options output=./junit/test-results.xml -g 'Post-Deploy'",
"lint": "./node_modules/.bin/eslint .",
"semantic-release": "semantic-release",
"docs": "npx jsdoc2md -c .jsdoc.json --files 'src/*.js' > docs/API.md",
"commit": "git-cz",
"build": "wsk-builder -v",
"deploy": "wsk-builder -v --deploy --test=/_status_check/healthcheck.json",
"deploy-sequences": "wsk-builder --no-build -no-hints -l latest -l major -l minor",
"deploy-ci": "wsk-builder -v --deploy --test=/_status_check/healthcheck.json --pkgVersion=ci$CIRCLE_BUILD_NUM -l ci"
},
"wsk": {
"name": "helix-micropub/publish@${version}",
"namespace": "trieloff"
},
"repository": {
"type": "git",
"url": "https://github.com/trieloff/helix-micropub-endpoint"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/trieloff/helix-micropub-endpoint/issues"
},
"homepage": "https://github.com/trieloff/helix-micropub-endpoint#readme",
"dependencies": {
"@adobe/helix-epsagon": "1.3.2",
"@adobe/helix-status": "7.1.3",
"@adobe/openwhisk-action-logger": "2.2.0",
"@adobe/openwhisk-action-utils": "4.2.2",
"@octokit/rest": "^17.9.2",
"github-slugger": "^1.3.0",
"remark": "^12.0.0",
"strip-markdown": "^3.1.2"
},
"devDependencies": {
"@adobe/eslint-config-helix": "1.1.0",
"@adobe/helix-ops": "1.11.2",
"@adobe/openwhisk-action-builder": "2.10.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codecov": "3.7.1",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0",
"eslint": "7.1.0",
"eslint-plugin-header": "3.0.0",
"eslint-plugin-import": "2.20.2",
"jsdoc-to-markdown": "5.0.3",
"junit-report-builder": "2.0.0",
"lint-staged": "10.2.6",
"mocha": "7.2.0",
"nyc": "15.0.1",
"proxyquire": "2.1.3",
"semantic-release": "17.0.8"
},
"lint-staged": {
"*.js": "eslint"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npx lint-staged"
}
}
}