forked from xmppo/node-expat
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 1.96 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "node-expat",
"version": "2.4.3",
"main": "./lib/node-expat",
"gypfile": true,
"description": "NodeJS binding for fast XML parsing.",
"keywords": [
"xml",
"sax",
"expat",
"libexpat",
"parse",
"parsing"
],
"files": [
"lib",
"deps",
"binding.gyp",
"node-expat.cc",
"LICENSE",
"README.md"
],
"binary": {
"module_name": "node_expat",
"host": "https://github.com",
"remote_path": "PruvoNet/node-expat/releases/download/v{version}"
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"rebuild": "node-gyp rebuild",
"preversion": "npm test",
"lint": "standard",
"unit": "vows --spec ./test/**/*.js",
"test": "npm run unit && npm run lint",
"benchmark": "node ./benchmark.js"
},
"dependencies": {
"nan": "^2.27.0",
"node-gyp": "^12.2.0",
"prebuild-install": "^7.1.3"
},
"devDependencies": {
"benchmark": "^2.1.4",
"debug": "^4.4.3",
"iconv": "^3.0.1",
"ltx": "^3.1.2",
"node-xml": "^1.0.2",
"prebuild": "^13.0.1",
"sax": "^1.4.4",
"standard": "^17.1.2",
"vows": "^0.8.3"
},
"repository": "github:PruvoNet/node-expat",
"homepage": "http://github.com/astro/node-expat",
"bugs": "https://github.com/PruvoNet/node-expat/issues",
"author": {
"name": "Astro",
"email": "astro@spaceboyz.net",
"web": "http://spaceboyz.net/~astro/"
},
"contributors": [
"Stephan Maka",
"Derek Hammer",
"Iein Valdez",
"Peter Körner",
"Camilo Aguilar",
"Michael Weibel",
"Alexey Zhuchkov",
"Satyam Shekhar",
"Dhruv Matani",
"Andreas Botsikas",
"Tom Hughes-Croucher",
"Nathan Rajlich",
"Julien Genestoux",
"Sonny Piers",
"Lloyd Watkin",
"AJ ONeal",
"Rod Vagg",
"Christoph Hartmann",
"Corbin Uselton",
"Julian Duque",
"Lovell Fuller",
"Antonio Bustos"
],
"licenses": [
{
"type": "MIT"
}
],
"license": "MIT"
}