-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.51 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
{
"name": "node-bcc",
"version": "2.4.2",
"description": "A simple Block Check Character library.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "c8 mocha",
"doc": "typedoc",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beyerleinf/node-bcc.git"
},
"keywords": [
"node",
"typescript",
"block",
"check",
"character",
"bcc"
],
"author": {
"name": "Fabian Beyerlein",
"email": "[email protected]",
"url": "https://github.com/beyerleinf"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/beyerleinf/node-bcc/issues"
},
"homepage": "https://github.com/beyerleinf/node-bcc#readme",
"files": [
"build",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"engines": {
"node": ">= 12.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"@types/sinon": "^10.0.20",
"c8": "^8.0.1",
"chai": "^4.3.10",
"gts": "^5.2.0",
"mocha": "^10.2.0",
"mocha-multi-reporters": "^1.5.1",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
}
}