-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "ddd-js",
"version": "1.0.0-alpha.31",
"description": "Basic / boilerplate JS classes & functions.",
"main": "src/index.js",
"scripts": {
"test": "mocha test/unit --recursive",
"cover": "nyc npm test",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rekhyt/ddd-js.git"
},
"author": "Timo Ebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rekhyt/ddd-js/issues"
},
"homepage": "https://github.com/Rekhyt/ddd-js#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-standard": "^1.0.2",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"proxyquire": "^2.1.0",
"sinon": "^7.5.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"uuid": "^3.4.0"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"src/index.js"
],
"reporter": [
"text",
"html"
],
"all": true
}
}