-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "json-data-stream-parser",
"version": "1.0.6",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"watch": "mocha -r ts-node/register 'test/**/*.ts' 'src/**/*.ts' -w --watch-extensions ts",
"build": "tsc",
"eslint": "eslint",
"lint": "eslint --fix .",
"dev": "nodemon src/index.ts",
"test": "npm run build && mocha 'test/**/*.test.js'"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kevalthakarar/json-data-stream-parser"
},
"keywords": [
"json",
"parser",
"stream",
"nodejs",
"typescript"
],
"author": "Keval Thakarar",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/chai": "^5.0.1",
"@types/deep-eql": "^4.0.2",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"chai": "^5.1.2",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"mocha": "^10.8.1",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
}
}