-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "cxml",
"version": "0.3.1",
"description": "Advanced schema-aware streaming XML parser",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"autogypi": "autogypi",
"node-gyp": "node-gyp",
"emcc-path": "emcc-path",
"copyasm": "copyasm",
"ndts": "ndts",
"tsc": "tsc",
"prepublish": "ndts > src/parser/Lib.d.ts && tsc -p src && ndts > dist/parser/Lib.d.ts",
"install": "autogypi && node-gyp configure build",
"test": "tsc -p test && node test/test.js"
},
"author": "Juha Järvi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/charto/cxml.git"
},
"bugs": {
"url": "https://github.com/charto/cxml/issues"
},
"homepage": "https://github.com/charto/cxml#readme",
"keywords": [
"xml",
"streaming",
"schema",
"parser",
"xsd",
"dts",
"typescript"
],
"devDependencies": {
"typescript": "^3.2.2"
},
"dependencies": {
"@types/node": "^10.12.18",
"autogypi": "^0.2.2",
"nbind": "^0.3.15"
}
}