109 lines
2.4 KiB
JSON
109 lines
2.4 KiB
JSON
{
|
|
"name": "cloudevents-sdk",
|
|
"version": "1.0.0",
|
|
"description": "CloudEvents SDK for JavaScript",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint": "standardx",
|
|
"fix": "standardx --fix",
|
|
"pretest": "npm run lint",
|
|
"test": "mocha test/**/*.js",
|
|
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
|
|
"precoverage-publish": "npm run coverage",
|
|
"coverage-publish": "wget -qO - https://coverage.codacy.com/get.sh | bash -s report -l JavaScript -r coverage/lcov.info",
|
|
"release": "standard-version"
|
|
},
|
|
"standard-version": {
|
|
"types": [
|
|
{
|
|
"type": "feat",
|
|
"section": "Features",
|
|
"hidden": false
|
|
},
|
|
{
|
|
"type": "fix",
|
|
"section": "Bug Fixes",
|
|
"hidden": false
|
|
},
|
|
{
|
|
"type": "docs",
|
|
"section": "Documentation",
|
|
"hidden": false
|
|
},
|
|
{
|
|
"type": "chore",
|
|
"section": "Miscellaneous",
|
|
"hidden": false
|
|
},
|
|
{
|
|
"type": "src",
|
|
"section": "Miscellaneous",
|
|
"hidden": false
|
|
},
|
|
{
|
|
"type": "style",
|
|
"section": "Miscellaneous",
|
|
"hidden": false
|
|
},
|
|
{
|
|
"type": "refactor",
|
|
"section": "Miscellaneous",
|
|
"hidden": false
|
|
},
|
|
{
|
|
"type": "perf",
|
|
"section": "Performance",
|
|
"hidden": false
|
|
},
|
|
{
|
|
"type": "test",
|
|
"section": "Tests",
|
|
"hidden": false
|
|
}
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/cloudevents/sdk-javascript.git"
|
|
},
|
|
"keywords": [
|
|
"events",
|
|
"cloudevents",
|
|
"sdk",
|
|
"javascript",
|
|
"cncf"
|
|
],
|
|
"author": "cloudevents.io",
|
|
"contributors": [
|
|
{
|
|
"name": "Fábio José de Moraes",
|
|
"email": "fabiojose@gmail.com",
|
|
"url": "https://github.com/fabiojose"
|
|
}
|
|
],
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/cloudevents/sdk-javascript/issues"
|
|
},
|
|
"homepage": "https://github.com/cloudevents/sdk-javascript#readme",
|
|
"dependencies": {
|
|
"ajv": "~6.12.0",
|
|
"axios": "~0.19.2",
|
|
"uuid": "~8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "~4.2.0",
|
|
"mocha": "~7.1.1",
|
|
"nock": "~12.0.3",
|
|
"nyc": "~15.0.0",
|
|
"eslint-config-standard": "^14.1.1",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"standardx": "^5.0.0",
|
|
"standard-version": "^7.1.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|