-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
62 lines (62 loc) · 1.43 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
{
"name": "stackexchange",
"version": "2.0.0",
"description": "Node.js implementation of the stackexchange/stackoverflow API",
"main": "./lib/stackexchange",
"files": [
"lib"
],
"scripts": {
"test": "standard lib && NODE_ENV=test c8 ./node_modules/.bin/mocha $(find test -name '*.test.js')"
},
"repository": {
"type": "git",
"url": "[email protected]:Swaagie/stackexchange.git"
},
"dependencies": {
"node-fetch": "^3.1.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"c8": "^7.11.0",
"chai": "^4.3.4",
"mocha": "^9.1.4",
"nock": "^13.2.2",
"semantic-release": "^19.0.2",
"standard": "^16.0.4"
},
"keywords": [
"stackoverflow",
"stackexchange",
"api",
"questions",
"answers"
],
"author": "Martijn Swaagman",
"license": "MIT",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"readmeFilename": "README.md"
}