-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.79 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
{
"name": "template-default-initiative-js",
"private": "true",
"version": "0.1.0",
"description": "Google Cloud Function",
"repository": {
"type": "git",
"url": "https://github.com/DP6/template-default-initiative-js.git"
},
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"lint-md": "remark .",
"lint-prettier": "npx prettier --check . || exit 0",
"lint": "npm run lint-md && npm run lint-prettier",
"unit-test": "mocha ./test/unit -timeout 8000",
"all-test": "npm run unit-test",
"test": "npm -- run all-test",
"coverage": "nyc --reporter=lcov --reporter=cobertura npm run unit-test",
"docs": "jsdoc2md index.js > docs/index.md"
},
"author": "DP6",
"contributors": [
{
"name": "Joaquim Neto",
"email": "[email protected]"
}
],
"license": "ISC",
"keywords": [
"dp6"
],
"bugs": {
"url": "https://github.com/DP6/template-default-initiative-js/issues"
},
"homepage": "https://github.com/DP6/template-default-initiative-js#readme",
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/github"
]
]
},
"dependencies": {},
"devDependencies": {
"chai": "^4.3.3",
"child-process-promise": "^2.2.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jsdoc-to-markdown": "^7.0.0",
"mocha": "^8.3.1",
"nyc": "^15.1.0",
"prettier": "2.2.1",
"remark": "^13.0.0",
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"sinon": "^10.0.0",
"uuid": "^8.3.2"
}
}