-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"name": "sre-l10n",
"version": "0.9.0",
"description": "l10n for SRE.",
"scripts": {
"format": "prettier --check ts/",
"format-fix": "prettier --write ts/",
"lint": "eslint ts/ --ext .ts,.tsx",
"lint-fix": "eslint ts/ --ext .ts,.tsx --fix",
"compile": "./node_modules/.bin/tsc",
"prepare": "npm run clean; npm run compile; npm run webpack",
"webpack": "./node_modules/.bin/webpack",
"clean": "npx rimraf dist js"
},
"maintainers": [
"Volker Sorge <[email protected]> (http://www.cs.bham.ac.uk/~vxs)"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/speech-rule-engine/sre-l10n/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/speech-rule-engine/sre-l10n"
},
"keywords": [
"screen-reader",
"xml",
"svg",
"a11y"
],
"homepage": "https://github.com/speech-rule-engine/sre-l10n",
"devDependencies": {
"@types/node": "20.2.5",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsdoc": "37.7.1",
"prettier": "^2.5.1",
"terser-webpack-plugin": "5.3.1",
"ts-loader": "9.2.6",
"typescript": "5.0.2",
"typescript-tools": "0.3.1",
"webpack": "5.76.3",
"webpack-cli": "^5.0.1"
},
"files": [
"LICENSE",
"README.md",
"lib/"
],
"main": "dist/srel10n.js",
"dependencies": {
"wicked-good-xpath": "^1.3.0",
"@xmldom/xmldom": "0.9.0-beta.8",
"yamljs": "^0.3.0"
},
"type": "module"
}