-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "datatables.net-cdn-server",
"version": "1.0.0",
"description": "DataTables CDN Server",
"main": "dist/server.js",
"scripts": {
"test": "bash test/run_tests.sh",
"start": "node dist/server.js",
"build": "npm install && tsc ./src/*.ts --outDir ./dist/",
"buildNoInstall": "tsc ./src/*.ts --outDir ./dist/",
"all": "npm run build && npm run server",
"debug": "node dist/server.js -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DataTables/CDN-Server.git"
},
"author": "SpryMedia Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/DataTables/CDN-Server/issues"
},
"homepage": "https://github.com/DataTables/CDN-Server#readme",
"dependencies": {
"@mojotech/json-type-validation": "^3.1.0",
"@types/node": "^12.0.7",
"file-extension": "^4.0.5",
"file-type": "^16.5.4",
"getopts": "^2.2.4",
"line-by-line": "^0.1.6",
"mime-types": "^2.1.24",
"perf_hooks": "0.0.1",
"semver-compare": "^1.0.0",
"ssri": "^8.0.1",
"ts-interface-checker": "^0.1.8",
"tslint": "^5.17.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.5.1",
"typescript-json-validator": "^2.3.1",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.1.0"
}
}