-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
48 lines (48 loc) · 1.21 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": "unicodeit",
"version": "0.7.5",
"description": "Converts LaTeX tags to unicode.",
"main": "ts_dist/js/index.js",
"types": "ts_dist/js/index.d.ts",
"directories": {
"test": "tests"
},
"files": [
"ts_dist/**/*"
],
"scripts": {
"build": "tsc && webpack",
"watch-tsc": "tsc --watch",
"watch-web": "webpack --watch",
"lint": "eslint ts_src --ext .js,.jsx,.ts,.tsx",
"test": "tsc && mocha ./ts_dist/js/tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svenkreiss/unicodeit.git"
},
"author": "Sven Kreiss",
"license": "MIT",
"bugs": {
"url": "https://github.com/svenkreiss/unicodeit/issues"
},
"homepage": "https://github.com/svenkreiss/unicodeit#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/jquery": "^3.5.16",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"chai": "^4.3.7",
"eslint": "^8.36.0",
"mocha": "^10.2.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@types/typeahead": "^0.11.32",
"typeahead": "^0.2.2"
}
}