-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 800 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 800 Bytes
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
{
"name": "xml-schema",
"version": "2.2.0",
"main": "lib/index.js",
"author": "Samy Pessé <samypesse@gmail.com>",
"description": "Library to generate/parse XML from JavaScript schemas",
"bugs": "https://github.com/SamyPesse/xml-schema/issues",
"license": "Apache-2.0",
"keywords": ["xml", "schema", "atom"],
"engines": {
"node": ">=0.6"
},
"dependencies": {
"lodash": "^3.9.3",
"xmlbuilder": "2.4.5",
"xml-parser": "1.2.1"
},
"devDependencies": {
"mocha": "2.2.1",
"should": "5.2.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --timeout 15000"
},
"repository": {
"type": "git",
"url": "https://github.com/SamyPesse/xml-schema.git"
}
}