-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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
{
"name": "@kcmertens/rng-parser",
"version": "1.1.0",
"description": "Parse a Relax-NG file in xml-form and convert it to a configuration object for use with Lexonomy.",
"main": "dist/rng-parser.js",
"scripts": {
"start": "webpack serve --config webpack.config.dev.js --mode development --port 80 --host 0.0.0.0",
"build": "webpack --config webpack.config.prod.js --mode production",
"test": "jest",
"debug-test": "node --inspect-brk node_modules/.bin/jest --runInBand",
"sef": "xslt3 -t -xsl:xslt-test/rng-simplification-total.xsl -export:xslt-test/rng-simplification-total.sef.json -nogo"
},
"files": [
"dist/**"
],
"types": "dist/src/rng-parser.d.ts",
"author": "KCMertens",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"babel-jest": "^27.0.6",
"css-loader": "^5.2.6",
"jest": "^27.0.6",
"raw-loader": "^4.0.2",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"vue": "^2.6.14",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"xml-formatter": "^2.4.0"
},
"dependencies": {
"@kcmertens/xonomy": "0.0.9",
"hotkeys-js": "^3.8.7",
"saxon-js": "^2.2.0",
"xslt3": "^2.2.0"
}
}