-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1 KB
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
{
"name": "xtagger",
"version": "0.1.5",
"description": "A simple node package to get xml strucutre from XML files using streams!",
"main": "dist/index.js",
"scripts": {
"start": "npm run tsc && node dist/demo.js",
"tsc": "node ./node_modules/typescript/bin/tsc",
"test": "npm run tsc && node ./node_modules/mocha/bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manojc/xtag.git"
},
"keywords": [
"xml",
"stream",
"parse"
],
"author": "manojc <chalodem@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/manojc/xtag/issues"
},
"homepage": "https://github.com/manojc/xtag#readme",
"dependencies": {
"sax": "^1.2.4"
},
"devDependencies": {
"@types/request": "^2.47.1",
"@types/sax": "^1.0.1",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"request": "^2.88.0",
"typescript": "^3.0.1"
}
}