forked from nashwaan/xml-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.37 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "xml-js",
"version": "1.4.1",
"description": "A convertor between XML text and Javascript object / JSON text.",
"repository": {
"type": "git",
"url": "git+https://github.com/nashwaan/xml-js.git"
},
"author": "Yousuf Almarzooqi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nashwaan/xml-js/issues"
},
"homepage": "https://github.com/nashwaan/xml-js#readme",
"keywords": [
"XML",
"xml",
"js",
"JSON",
"json",
"cdata",
"CDATA",
"doctype",
"processing instruction",
"Javascript",
"js2xml",
"json2xml",
"xml2js",
"xml2json",
"transform",
"transformer",
"transforming",
"transformation",
"convert",
"convertor",
"converting",
"conversion",
"parse",
"parser",
"parsing"
],
"main": "lib/index.js",
"bin": "./bin/cli.js",
"types": "./types/index.d.ts",
"scripts": {
"debug": "nodemon --inspect --watch lib/ --watch test/ --debug-brk test/index.js",
"debug:cli": "nodemon --inspect --watch lib/ --debug-brk index.js -- --help",
"jasmine": "jasmine JASMINE_CONFIG_PATH=./test/jasmine.json",
"watch:jasmine": "watch \"npm run jasmine\" lib/ test/",
"bundle:jasmine": "globify test/*_test.js --watch --verbose --list --outfile test/browse-jasmine/bundle.js",
"live:jasmine": "browser-sync start --port 9991 --server test/browse-jasmine/ --files test/browse-jasmine/ --no-open --no-ui --no-online",
"open:jasmine": "biased-opener --browser chrome http://localhost:9991",
"istanbul": "istanbul cover --dir test/browse-coverage -x test/browse-** test/index.js",
"watch:istanbul": "watch \"npm run istanbul\" lib/ test/ --ignoreDirectoryPattern=/browse-.+/",
"live:istanbul": "browser-sync start --port 9992 --server test/browse-coverage/lcov-report/ --files test/browse-coverage/lcov-report/ --no-open --no-ui --no-online",
"open:istanbul": "biased-opener --browser chrome http://localhost:9992",
"live": "npm-run-all --parallel live:* open:*",
"start": "npm-run-all --parallel bundle:jasmine watch:istanbul live:* open:*",
"git:commit": "git add . && git commit -a -m \"Committed by npm script.\" && git push origin master",
"git:push": "git push origin master",
"deploy": "npm-run-all --serial coverage:* git:*",
"coverage": "npm-run-all coverage:*",
"coverage:a-step": "npm run istanbul",
"coverage:coveralls": "cat ./test/browse-coverage/lcov.info | coveralls",
"coverage:codacy": "cross-env CODACY_PROJECT_TOKEN=0207815122ea49a68241d1aa435f21f1 cat ./test/browse-coverage/lcov.info | codacy-coverage",
"coverage:codeclimate": "cross-env CODECLIMATE_REPO_TOKEN=60848a077f9070acf358b0c7145f0a2698a460ddeca7d8250815e75aa4333f7d codeclimate-test-reporter < test\\browse-coverage\\lcov.info",
"prepublish": "npm run test",
"test": "npm run jasmine && npm run test:types",
"test:types": "tsc -p ./types"
},
"dependencies": {
"sax": "^1.2.1"
},
"devDependencies": {
"biased-opener": "^0.2.8",
"browser-sync": "^2.18.12",
"cash-cat": "^0.2.0",
"codacy-coverage": "^2.0.2",
"codeclimate-test-reporter": "^0.4.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.0",
"globify": "^2.0.0",
"istanbul": "^0.4.5",
"jasmine": "^2.6.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.1",
"typescript": "^2.3.3",
"watch": "^1.0.1"
}
}