-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.58 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
{
"name": "@basd/testr",
"version": "0.1.6",
"description": "A lightweight, flexible and based testing library for JS",
"author": "Basedwon <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/basedwon/testr.git"
},
"bugs": {
"url": "https://github.com/basedwon/testr/issues"
},
"homepage": "https://github.com/basedwon/testr#readme",
"main": "./lib/testr.js",
"exports": {
".": {
"browser": "./lib/testr.js",
"node": "./lib/testr-node.js"
}
},
"browser": {
".": "./lib/testr.js"
},
"bin": {
"lib/testr": "./lib/testr-cli.js"
},
"scripts": {
"build": "nodemon test/self-test.js",
"dev": "nodemon -x \"npm test\"",
"update": "npm run update:prod && npm run update:dev",
"update:prod": "npm i -S chai@latest sinon@latest",
"update:dev": "npm i -D mocha@latest",
"test": "mocha ./test/*.test.js"
},
"dependencies": {
"chai": "^4.3.10",
"sinon": "^17.0.1"
},
"devDependencies": {
"mocha": "^10.2.0"
},
"keywords": [
"test",
"testing",
"test-framework",
"assertion",
"assertions",
"tdd",
"bdd",
"api",
"unit",
"unit-testing",
"test-runner",
"runner",
"browser",
"node",
"nodejs",
"javascript",
"development",
"dev",
"developer-tools",
"quality",
"code-quality",
"ci",
"cd",
"continuous-integration",
"continuous-delivery",
"mocha",
"jest",
"describe",
"it",
"hooks",
"lightweight",
"flexible",
"async"
]
}