-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.02 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
{
"name": "saxtract",
"description": "A simple SAX + XPATH type parser for converting XML to JS objects",
"version": "1.1.0",
"homepage": "https://github.com/lucastheisen/saxtract",
"keywords": [
"xml",
"sax",
"extract",
"xpath"
],
"author": {
"name": "Pastdev",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Lucas Theisen",
"email": "[email protected]"
}
],
"main": "saxtract.js",
"bugs": {
"url": "https://github.com/lucastheisen/saxtract/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lucastheisen/saxtract.git"
},
"engines": {
"node": ">= 4.4.5"
},
"dependencies": {
},
"devDependencies": {
"libxmljs": ">= 0.8.1",
"mocha": ">= 2.3.3",
"sax": ">= 1.2.1"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/lucastheisen/saxtract/raw/master/LICENSE"
}
],
"readmeFilename": "README.md",
"scripts": {
"test": "mocha test -R spec"
}
}