-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.46 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
{
"name": "zunit",
"version": "4.0.2",
"type": "commonjs",
"bin": {
"zUnit": "bin/zUnit.js"
},
"description": "A zero dependency, non-polluting, low magic, test harness for Node.js",
"engines": {
"node": ">=14"
},
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"testing",
"unit",
"jasmine",
"mocha",
"tape",
"jest",
"alternative",
"zero",
"dependencies",
"light",
"lightweight",
"simple",
"typescript"
],
"scripts": {
"lint": "eslint .",
"test": "bin/zUnit.js",
"coverage": "nyc --report html --reporter lcov --reporter text-summary npm test",
"example": "pushd example; npm t; popd",
"prepare": "husky install"
},
"author": "Stephen Cresswell",
"license": "ISC",
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nyc": "^15.1.0",
"prettier": "2.7.1"
},
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acuminous/zUnit.git"
},
"bugs": {
"url": "https://github.com/acuminous/zUnit/issues"
},
"homepage": "https://acuminous.github.io/zUnit/",
"zUnit": {
"pollute": true,
"require": [
"./test/support/assertions.js",
"./test/support/polyfill.js"
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}