-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.16 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
{
"name": "parse-xsd",
"version": "1.0.0",
"description": "Parse XSD to JSON",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"eslint": "eslint **/*.js --ignore-pattern node_modules/"
},
"eslintConfig": {
"extends": "standard",
"env": {
"browser": true,
"node": true
},
"globals": {
"describe": true,
"it": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/h9h/parse-xsd.git"
},
"keywords": [
"xsd",
"xml",
"parser",
"xml-schema",
"json"
],
"author": "Michael Heinke",
"license": "MIT",
"bugs": {
"url": "https://github.com/h9h/parse-xsd/issues"
},
"homepage": "https://github.com/h9h/parse-xsd#readme",
"dependencies": {
"find-up": "^2.1.0",
"ramda": "^0.25.0",
"xml2js": "^0.4.19",
"yargs": "^11.0.0"
},
"devDependencies": {
"deep-diff": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.1.1"
}
}