-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"files": [
"dist/**/*"
],
"name": "saxxmlparser",
"version": "0.0.0",
"description": "An xml parsing utility using the sax engine ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint lib/**/* __test__/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/TheDome/xmljs-sax.git"
},
"bugs": {
"url": "https://github.com/TheDome/xmljs-sax/issues"
},
"keywords": [
"xml",
"sax.js"
],
"author": "TheDome",
"license": "Apache-2.0",
"devDependencies": {
"@types/debug": "4.1.7",
"@types/jest": "27.5.0",
"@types/sax": "1.2.4",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"jest": "27.5.1",
"prettier": "2.8.1",
"ts-jest": "27.1.4",
"typescript": "4.9.4"
},
"dependencies": {
"debug": "4.3.4",
"sax": "1.2.4"
}
}