-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
140 lines (140 loc) · 3.72 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "ud-annotatrix",
"version": "1.0.0",
"description": "a client-side browser-only tool for editing dependency trees in CoNLL-U and VISL formats",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"d3": "^5.16.0",
"dotenv": "^7.0.0",
"ejs": "^2.6.2",
"express": "^4.16.4",
"express-fileupload": "^1.1.4",
"express-session": "^1.16.2",
"jquery": "^3.5.0",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"nocache": "^2.0.0",
"request": "^2.88.0",
"socket.io": "^2.2.0",
"socket.io-cookie-parser": "^1.0.0",
"tsify": "^5.0.4",
"underscore": "^1.9.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.0",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.3",
"@types/d3": "^5.16.0",
"@types/express-fileupload": "^1.1.4",
"@types/express-session": "^1.16.2",
"@types/jquery": "^3.5.0",
"@types/mkdirp": "^0.5.1",
"@types/morgan": "^1.9.1",
"@types/request": "^2.48.8",
"@types/socket.io": "^2.1.13",
"@types/socket.io-parser": "^3.0.0",
"@types/sqlite3": "^3.1.8",
"@types/uuid": "^3.3.2",
"babel-plugin-transform-es5-property-mutators": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"chai": "^4.3.4",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0-beta.2",
"gulp-concat": "^2.6.1",
"gulp-rename": "^1.4.0",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^1.2.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.11",
"nyc": "^12.0.2",
"sinon": "^5.1.1",
"socket.io-parser": "^4.2.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"build": "gulp",
"build-watch": "gulp && gulp watch",
"test": "mocha -r ts-node/register --max-old-space-size=8192 test/notatrix/index.js",
"coverage": "nyc mocha -r ts-node/register --max-old-space-size=8192 test/notatrix/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonorthwash/ud-annotatrix.git"
},
"contributors": [
{
"name": "Jonathan Washington",
"url": "https://github.com/jonorthwash"
},
{
"name": "Francis Tyers",
"url": "https://github.com/ftyers"
},
{
"name": "Mariya Sheyanova",
"url": "https://github.com/maryszmary"
},
{
"name": "Kevin Murphy",
"url": "https://github.com/keggsmurph21"
},
{
"name": "Sushain Cherivirala",
"url": "https://github.com/sushain97"
},
{
"name": "Kevin Brubeck Unhammer",
"url": "https://gjthub.com/unhammer"
},
{
"name": "Tai Vongsathorn Warner",
"url": "https://github.com/midasdoas"
},
{
"name": "Daniel Swanson",
"url": "https://github.com/mr-martian"
},
{
"name": "Grzegorz Stark",
"url": "https://github.com/gstark0"
},
{
"name": "Jonathan Pan",
"url": "https://github.com/JPJPJPOPOP"
},
{
"name": "Suresh Michael Peires",
"url": "https://github.com/tsuresh"
},
{
"name": "Diogo Fernandes",
"url": "https://github.com/diogoscf"
},
{
"name": "Robin Richtsfeld",
"url": "https://github.com/androbin"
},
{
"name": "Ethan Yang",
"url": "https://github.com/thatprogrammer1"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jonorthwash/ud-annotatrix/issues"
},
"homepage": "https://github.com/jonorthwash/ud-annotatrix#readme"
}