-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
43 lines (43 loc) · 914 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
{
"name": "cxsd",
"version": "0.1.1",
"description": "Streaming XSD parser and XML parser generator with TypeScript output",
"bin": {
"cxsd": "cxsd-cli.js"
},
"scripts": {
"tsc": "tsc",
"typings": "typings",
"prepublish": "typings install && tsc",
"test": "node cxsd-cli.js --help"
},
"author": "Juha Järvi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/charto/cxsd.git"
},
"bugs": {
"url": "https://github.com/charto/cxsd/issues"
},
"homepage": "https://github.com/charto/cxsd#readme",
"keywords": [
"xsd",
"dts",
"xml",
"schema",
"parser",
"typescript"
],
"dependencies": {
"bluebird": "^3.4.1",
"cget": "~0.0.5",
"commander": "~2.9.0",
"cxml": "~0.1.0",
"node-expat": "~2.3.15"
},
"devDependencies": {
"typescript": "^1.8.10",
"typings": "^1.3.2"
}
}