-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 KB
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
{
"name": "csharp-binary-stream",
"version": "2.0.0",
"description": "Library compatible with C#'s BinaryReader class",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register -p tsconfig.test.json test/**/*.test.ts",
"clean": "rm -rf dist",
"build": "npx tsc",
"docs": "typedoc --options typedoc.config.js && node docs-clean.js",
"lint": "eslint test/**/*.ts src/**/*.ts",
"lint-fix": "eslint --fix test/**/*.ts src/**/*.ts",
"prepare-publish": "npm run clean && npm run lint && npm run build && npm run docs"
},
"keywords": [
"csharp",
"compatibility",
"binary",
"reader",
"stream"
],
"author": "Maurycy Zarzycki (Evidently Cube)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:EvidentlyCube/chsarp-binary-stream.git"
},
"devDependencies": {
"@stryker-mutator/mocha-runner": "^9.0.1",
"@types/big-integer": "0.0.31",
"@types/chai": "^4.2.5",
"@types/mocha": "^5.2.7",
"@types/node": "^11.15.2",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"chai": "^4.2.0",
"eslint": "^9.27.0",
"mocha": "^11.5.0",
"replace-in-file": "^3.4.4",
"ts-node": "^8.10.2",
"typedoc": "^0.28.5",
"typedoc-twilio-theme": "^1.0.0",
"typescript": "^5.8.3"
}
}