-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.6 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
81
82
83
84
85
86
87
88
89
90
{
"name": "@dadi/api",
"version": "3.0.0",
"main": "main.js",
"scripts": {
"create-client": "cd ../../.. && node ./node_modules/@dadi/api/utils/create-client.js",
"docs": "jsdoc -c ./docs/conf.json -R README.md -r dadi/lib -d docs",
"commitmsg": "commitlint -e",
"test": "standard 'dadi/**/*.js' | snazzy && env NODE_ENV=test ./node_modules/.bin/istanbul cover --report cobertura --report text --report html --report lcov ./node_modules/mocha/bin/_mocha",
"posttest": "./scripts/coverage.js",
"start": "node start.js --node_env=development"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
]
},
"dependencies": {
"@dadi/boot": "^1.0.0",
"@dadi/cache": "1.5.x",
"@dadi/et": "^2.0.0",
"@dadi/format-error": "^1.6.0",
"@dadi/logger": "latest",
"@dadi/status": "latest",
"async": "^2.1.4",
"aws-sdk": "^2.46.0",
"body-parser": "~1.17.1",
"busboy": "^0.2.13",
"chokidar": "^1.5.2",
"cli-prompt": "^0.6.0",
"colors": "1.1.2",
"concat-stream": "^1.6.0",
"console-stamp": "^0.2.0",
"convict": "4.0.2",
"debug": "3.1.0",
"fs-extra": "^3.0.1",
"imagesize": "^1.0.0",
"jsonwebtoken": "^7.4.x",
"length-stream": "^0.1.1",
"mkdirp": "^0.5.1",
"moment": "2.19.3",
"parse-comments": "0.4.3",
"path-to-regexp": "~1.7.0",
"recovery": "^0.2.6",
"serve-static": "^1.12.3",
"sha1": "latest",
"stack-trace": "latest",
"streamifier": "^0.1.1",
"underscore": "1.8.3",
"underscore-contrib": "^0.3.0",
"validator": "7.0.0",
"vary": "^1.1.2"
},
"devDependencies": {
"@commitlint/cli": "~4.1.1",
"@commitlint/config-angular": "~3.1.1",
"@dadi/metadata": "^1.0.0",
"aws-sdk-mock": "1.6.1",
"env-test": "1.0.0",
"fakeredis": "1.0.3",
"form-data": "2.1.4",
"husky": "^0.13.3",
"istanbul": "^1.1.0-alpha.1",
"istanbul-cobertura-badger": "^1.1.0",
"lokijs": "^1.5.1",
"mocha": "~3.2.0",
"mochawesome": "^2.1.0",
"proxyquire": "^1.7.4",
"should": "4.0.4",
"sinon": "2.3.2",
"snazzy": "7.0.0",
"standard": "8.6.0",
"supertest": "~0.13.0",
"uuid": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dadi/api.git"
},
"bugs": {
"url": "https://github.com/dadi/api/issues"
},
"homepage": "https://github.com/dadi/api",
"author": "DADI <[email protected]>",
"license": "SEE LICENSE IN GPL.md",
"description": "A high performance RESTful API layer designed in support of API-first development and the principle of COPE.",
"directories": {
"test": "test"
}
}