forked from k8w/tsbuffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.7 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": "tsbuffer",
"version": "2.2.9",
"description": "",
"main": "index.js",
"exports": {
"require": "./index.js",
"import": "./index.mjs"
},
"typings": "./index.d.ts",
"directories": {
"doc": "docs"
},
"dependencies": {
"k8w-extend-native": "^1.4.6",
"tsbuffer-validator": "^2.1.2",
"tslib": "*"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.23.15",
"@microsoft/api-extractor": "^7.39.0",
"@types/mocha": "^8.2.3",
"@types/node": "^20.10.5",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.2",
"tsbuffer-proto-generator": "^1.7.2",
"typescript": "^4.9.5"
},
"scripts": {
"test": "npx mocha",
"coverage": "nyc mocha test/**/*.test.ts && start coverage\\index.html",
"build": "npm run build:js && npm run build:dts && npm run build:doc && cp package.json LICENSE README.md dist/",
"build:js": "rm -rf dist && npx rollup -c",
"build:dts": "rm -rf lib && npx tsc && npx api-extractor run --local --verbose && node scripts/removePrivate.js && rm -rf lib",
"build:doc": "rm -rf docs/api && npx api-documenter markdown --input temp --output docs/api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/k8w/tsbuffer.git"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"coverage",
"test",
"dist",
"benchmark",
"scripts"
],
"reporter": [
"html"
],
"all": true
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/k8w/tsbuffer/issues"
},
"homepage": "https://github.com/k8w/tsbuffer#readme"
}