forked from kawanet/from-xml
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 959 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
{
"name": "from-xml",
"description": "fromXML - Pure JavaScript XML Parser",
"version": "0.1.6",
"author": "Yusuke Kawasaki <[email protected]>",
"bin": {
"xml2json": "./bin/xml2json.cli.js"
},
"bugs": {
"url": "https://github.com/kawanet/from-xml/issues"
},
"devDependencies": {
"chai": "^3.5.0",
"jshint": "^2.9.4",
"mocha": "^3.1.2",
"uglify-js": "^2.7.3"
},
"homepage": "https://github.com/kawanet/from-xml#readme",
"jshintConfig": {
"es3": true,
"node": true,
"undef": true,
"unused": true
},
"keywords": [
"deserialize",
"json",
"parser",
"xml"
],
"license": "MIT",
"main": "from-xml.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kawanet/from-xml.git"
},
"scripts": {
"build": "make",
"clean": "make clean",
"fixpack": "fixpack",
"test": "make test",
"test-watch": "while :; do make test; sleep 1; done"
}
}