-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.19 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
{
"name": "datatables.net-editor-server",
"version": "2.3.2",
"description": "NodeJS server-side support for the DataTables Editor library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "./node_modules/typedoc/bin/typedoc --excludePrivate --out ./docs ./src/",
"build": "gulp"
},
"keywords": [
"DataTables",
"Editor"
],
"author": "SpryMedia Limited",
"license": "MIT",
"dependencies": {
"app-root-path": "^3.1.0",
"crc": "^4.2.0",
"knex": "^2.4.0",
"moment": "^2.29.4",
"mv": "^2.1.1",
"valid-url": "^1.0.9",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"@types/node": "^18.11.18",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"tslint": "^5.20.1",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"importSort": {
".js, .jsx, .es6, .es": {
"parser": "babylon",
"style": "eslint"
},
".ts, .tsx": {
"parser": "typescript",
"style": "module"
}
},
"repository": {
"type": "git",
"url": "https://github.com/DataTables/Editor-Node.git"
}
}