-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.26 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": "real-test-js",
"version": "1.9.5",
"description": "RealTestJS - Fast and reliable testing for JavaScript!",
"type": "module",
"bin": {
"real-test-js": "src/runner.mjs"
},
"exports": {
".": "./src/index.mjs"
},
"types": "./src/index.d.ts",
"scripts": {
"test": "src/runner.mjs --folder=test",
"lint": "eslint \"**/*.{js,mjs}\" --ignore-pattern node_modules/",
"prettier": "prettier . --check",
"fix-formatting": "npx prettier --write ."
},
"author": "Vadym Nastoiashchyi",
"keywords": [
"runner",
"mocha",
"test",
"bdd",
"tdd",
"tap",
"testing",
"chai",
"assertion",
"ava",
"jest",
"tape",
"jasmine",
"karma",
"expect",
"easy",
"fast"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/VadimNastoyashchy/real-test-js.git"
},
"bugs": {
"url": "https://github.com/VadimNastoyashchy/real-test-js/issues"
},
"homepage": "https://github.com/VadimNastoyashchy/real-test-js#readme",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "3.0.3"
}
}