forked from dadi/api-connector-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 733 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 733 Bytes
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
{
"name": "@dadi/api-connector-template",
"version": "0.0.0-development",
"description": "A datastore adapter template for DADI API",
"main": "index.js",
"scripts": {
"test": "env NODE_ENV=test ./node_modules/mocha/bin/_mocha test"
},
"author": "DADI <team@dadi.tech>",
"license": "ISC",
"dependencies": {
"convict": "~4.0.0",
"debug": "~2.6.0",
"mkdirp": "~0.5.1",
"mysql2": "^1.5.1",
"underscore": "~1.8.3",
"uuid": "~3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/dadi/api-datastore-template.git"
},
"devDependencies": {
"colors": "^1.1.2",
"env-test": "^1.0.0",
"mocha": "~3.2.0",
"should": "~4.0.4",
"sinon": "~1.17.6"
}
}