This repository has been archived by the owner on Aug 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.47 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
68
69
70
71
72
73
{
"name": "@tuananh/sax-parser",
"version": "1.0.2",
"description": "An extremely fast SAX parser for Node.js, written in C++.",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "node-gyp rebuild",
"install": "node-gyp rebuild",
"benchmark": "node benchmark",
"fmt": "prettier --write **/*.js index.js"
},
"files": [
"src/**",
"vendor/**",
"index.js",
"binding.gyp"
],
"keywords": [
"xml",
"sax",
"pugixml",
"rapidxml",
"parse",
"parsing"
],
"author": {
"name": "Tuan Anh Tran",
"email": "[email protected]",
"web": "https://tuananh.net"
},
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^5.0.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"husky": "^8.0.1",
"jest": "^28.1.3",
"libxmljs": "^0.19.7",
"lint-staged": "^13.0.3",
"ltx": "^3.0.0",
"node-expat": "^2.3.18",
"node-gyp": "^9.1.0",
"node-xml": "^1.0.2",
"prettier": "^2.0.5",
"sax": "^1.2.4"
},
"gypfile": true,
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuananh/sax-parser.git"
},
"bugs": {
"url": "https://github.com/tuananh/sax-parser/issues"
},
"homepage": "https://github.com/tuananh/sax-parser#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run fmt",
"git add ."
]
}
}