-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.22 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
{
"name": "@someimportantcompany/utils",
"description": "A collection of handy utility functions for you & your projects.",
"version": "1.3.1",
"scripts": {
"test": "nyc mocha",
"test:mocha": "mocha"
},
"repository": "https://github.com/someimportantcompany/utils.git",
"author": "jdrydn <[email protected]> (https://jdrydn.com)",
"license": "MIT",
"bugs": "https://github.com/someimportantcompany/utils/issues",
"homepage": "https://github.com/someimportantcompany/utils",
"main": "./index.cjs",
"types": "./index.d.ts",
"files": [
"./*.cjs",
"./*.d.ts"
],
"devDependencies": {
"@types/mocha": "^10.0.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"mocha": {
"exit": true,
"recursive": true,
"require": [
"ts-node/register"
],
"reporter": "spec",
"ignore": [
"**/node_modules"
],
"spec": [
"./{,!(node_modules)/**}/*.test.{,+(js|ts)}"
]
},
"nyc": {
"exclude": [
"*.test.js",
"**/*.test.js",
"*.test.ts",
"**/*.test.ts",
"test/"
],
"reporter": [
"lcov",
"text"
]
}
}