-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.65 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.65 KB
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
{
"name": "javascript-testing",
"version": "0.0.1",
"description": "Various Ways to Test Things in JavaScript",
"scripts": {
"postinstall": "make post-install",
"test": "make quality"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/cantremember/javascript-testing.git"
},
"author": "Daniel M Foley <admin@cantremember.com> (http://cantremember.com/)",
"license": "WTFPL",
"esm": {
"mode": "strict",
"debug": false
},
"// jest": "@see ./jest.config.js",
"ava": {
"// NOTE": "cannot use ./ava.config.js due to `esm` + { mode: 'strict' }",
"files": [
"test/ava/*.js",
"test/ava/*.mjs"
],
"sources": [
"**/*.{js,mjs}"
],
"match": [],
"cache": false,
"concurrency": 2,
"failFast": false,
"failWithoutAssertions": false,
"tap": false,
"compileEnhancements": false,
"require": [
"esm",
"./test/bootstrap.js"
],
"extensions": [],
"babel": {}
},
"husky": {
"// CONFIG": "package.json vs. .huskyrc.json",
"// HOOKS": "https://git-scm.com/docs/githooks",
"// ENV": "HUSKY_SKIP_INSTALL=true",
"hooks": {
"pre-commit": "make quality"
}
},
"dependencies": {
"body-parser": "^1.18.3",
"esm": "^3.2.25",
"express": "^4.16.3",
"mongodb": "^3.6.3"
},
"devDependencies": {
"ava": "^1.2.1",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"husky": "^1.1.3",
"jest": "^24.1.0",
"mocha": "^5.2.0",
"mock-require": "^3.0.2",
"mongodb-sandbox": "^1.0.0",
"rewire": "^4.0.1",
"sinon": "^6.1.4",
"supertest": "^3.1.0",
"tape": "^4.9.1"
}
}