-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1004 Bytes
/
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
{
"name": "discourse-node-api",
"version": "1.0.1",
"description": "Node.js API for Discourse's REST API",
"main": "index.js",
"repository": "https://github.com/debtcollective/discourse-node-api",
"author": "Debt Collective",
"license": "BSD-3-Clause",
"private": false,
"scripts": {
"test": "DISCOURSE_NODE_SUPPRESS_LOGS=1 mocha",
"test:debug": "mocha --inspect-brk",
"precommit": "lint-staged",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"dependencies": {
"@types/superagent": "4.1.7",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"multiparty": "^4.1.3",
"nock": "^9.2.3",
"qs": "^6.5.2",
"superagent": "5.2.2",
"snyk": "^1.316.1"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.19.1",
"query-string": "^6.0.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"types": "./types/index.d.ts",
"snyk": true
}