-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 939 Bytes
/
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
{
"name": "xmlkit",
"version": "2.0.0",
"description": "xml tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"dev": "tsc -w",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts"
},
"keywords": [
"xml",
"stream",
"parser",
"serializer"
],
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/georgyfarniev/xmlkit"
},
"author": "Georgy Farniev",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "7.24.5",
"@babel/preset-typescript": "7.24.1",
"@eslint/js": "9.2.0",
"@types/jest": "29.5.12",
"@types/sax": "1.2.7",
"eslint": "8.57.0",
"jest": "29.7.0",
"typescript": "5.4.5",
"typescript-eslint": "7.8.0"
},
"dependencies": {
"sax": "1.3.0"
}
}