-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.85 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
79
80
{
"name": "bots-shortcodes",
"version": "1.0.3",
"description": "A group of shortcodes used to enhance answers provided by bots",
"main": "index.js",
"private": true,
"keywords": [
"chatbots",
"flinders university",
"shortcodes",
"university",
"academic"
],
"scripts": {
"lint": "eslint .",
"test": "mocha",
"precoverage": "rimraf ./coverage",
"coverage": "c8 mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flindersuni/bots-shortcodes.git"
},
"author": "Corey Wallis <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/flindersuni/bots-shortcodes/issues"
},
"homepage": "https://github.com/flindersuni/bots-shortcodes#readme",
"engines": {
"node": "^12"
},
"mocha": {
"recursive": true
},
"commitlint": {
"plugins": [
"commitlint-plugin-jira-rules"
],
"extends": [
"jira"
],
"rules": {
"jira-task-id-project-key": [
2,
"always",
"BOTS"
]
}
},
"husky": {
"hooks": {
"commit-msg": "npx commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"c8": "^7.3.5",
"commitlint-config-jira": "^1.4.1",
"commitlint-plugin-jira-rules": "^1.4.0",
"eslint": "^7.15.0",
"eslint-config-jquery": "^3.0.0",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.6",
"mocha": "^8.2.1",
"nock": "^13.0.5",
"rimraf": "^3.0.2"
},
"dependencies": {
"@wordpress/shortcode": "^2.11.0",
"escape-string-regexp": "^4.0.0",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.1"
}
}