-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
67 lines (67 loc) · 1.37 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
{
"name": "from-xml",
"description": "fromXML - Pure JavaScript XML Parser",
"version": "0.1.11",
"author": "Yusuke Kawasaki <[email protected]>",
"bin": {
"xml2json": "./bin/xml2json.cli.js"
},
"bugs": {
"url": "https://github.com/kawanet/from-xml/issues"
},
"devDependencies": {
"chai": "^4.3.7",
"jshint": "^2.13.6",
"mocha": "^10.2.0",
"terser": "^5.19.2"
},
"exports": {
".": {
"require": "./from-xml.js",
"import": {
"types": "./from-xml.d.ts",
"default": "./dist/from-xml.mjs"
}
}
},
"files": [
"*.d.ts",
"*.js",
"LICENSE",
"README.md",
"bin/*.js",
"dist/*.min.js",
"dist/*.mjs",
"package.json"
],
"homepage": "https://github.com/kawanet/from-xml#readme",
"jshintConfig": {
"esversion": 6,
"node": true,
"undef": true,
"unused": true
},
"keywords": [
"deserialize",
"json",
"parser",
"xml"
],
"license": "MIT",
"main": "./from-xml.js",
"module": "./dist/from-xml.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/kawanet/from-xml.git"
},
"scripts": {
"build": "make",
"clean": "make clean",
"fixpack": "fixpack",
"prepack": "make clean all test",
"test": "make test",
"test-browser": "make && open test/test.html"
},
"type": "commonjs",
"types": "from-xml.d.ts"
}