-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.16 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
{
"name": "m.test",
"version": "0.0.58",
"homepage": "https://github.com/ivoputzer/m.test#readme",
"description": "m(icro)test is a lightweight test runner for node.js written in es6+",
"author": "Ivo von Putzer Reibegg <ivo.putzer@gmail.com> (https://github.com/ivoputzer)",
"keywords": [
"m!cro",
"m.test",
"mtest",
"assert",
"expect",
"should",
"context",
"describe",
"it",
"test",
"sync",
"async",
"recursive",
"skip",
"beforeEach",
"afterEach"
],
"bin": {
"m.test": "bin/index.mjs",
"m-test": "bin/index.mjs",
"mtest": "bin/index.mjs"
},
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"node": "node",
"lint": "npx standard",
"test": "node bin/index.mjs"
},
"license": "MIT",
"man": [
"man/m.test.1"
],
"bugs": {
"url": "https://github.com/ivoputzer/m.test/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivoputzer/m.test.git"
},
"standard": {
"globals": [
"test",
"beforeEach",
"afterEach"
]
},
"devDependencies": {
"follow-redirects": "^1.15.2"
}
}