-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 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
38
39
40
41
42
43
44
{
"name": "xmljsonkit",
"version": "1.0.4",
"description": "XML to JSON parser library with ordered elements",
"keywords": [ "xml", "json", "xml2json" ],
"main": "dist/xmljsonkit.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Nanonid/xmljsonkit.git",
"author": "Nanonid <eric.lindahl.tab@gmail.com>",
"license": "APACHE-2",
"private": false,
"files": [ "dist" ],
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.1",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"chevrotain": "^7.0.1",
"typescript": "^4.0.2"
},
"scripts": {
"build": "webpack",
"test": "jest",
"prepublishOnly": "webpack --mode=production",
"jsex" : "node ./examples/ordered.js"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testRegex": "/tests/.*\\.spec\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"verbose": true
}
}