-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 924 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
42
43
44
45
46
47
48
49
{
"name": "appruve",
"version": "0.1.3",
"description": "Nodejs wrapper for appruve API",
"files": [
"src",
"index.js"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha \"test/*.test.js\""
},
"keywords": [
"appruve",
"identity",
"verification",
"nodejs",
"api-endpoints",
"rest-api"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/devamaz/appruve"
},
"bugs": {
"url": "https://github.com/devamaz/appruve/issues"
},
"homepage": "https://github.com/devamaz/appruve#readme",
"author": "devamaz <[email protected]>",
"license": "MIT",
"standard": {
"globals": [
"describe",
"it"
]
},
"dependencies": {
"got": "^8.3.2",
"lodash": "^4.17.19"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.1.3",
"standard": "^14.3.4"
}
}