-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.03 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.03 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
{
"name": "aqa",
"version": "1.6.14",
"description": "Dependency-less Test Runner for Node.js",
"main": "aqa.js",
"scripts": {
"test": "node cli",
"test:verbose": "node cli --verbose",
"watch": "node cli --watch",
"watch:verbose": "node cli --watch --verbose",
"test:coverage": "c8 npm test"
},
"bin": {
"aqa": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wiiseguy/aqa.git"
},
"keywords": [
"tests",
"testing",
"dependencyless",
"test",
"runner",
"fast",
"tdd",
"cli-app",
"cli",
"aqa",
"ava",
"jest",
"mocha",
"tape",
"tap",
"qunit",
"jasmine",
"assert",
"assertion",
"unit",
"expect",
"coverage",
"sourcemap"
],
"author": "Wiiseguy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wiiseguy/aqa/issues"
},
"homepage": "https://github.com/Wiiseguy/aqa#readme",
"aqa": {},
"devDependencies": {
"@types/node": "^18.14.2",
"c8": "^7.12.0"
}
}