-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "vatsim-data-handler",
"version": "6.1.3",
"description": "A data handler for the VATSIM status system",
"main": "./build/cjs/methods.js",
"module": "./build/esm/methods.js",
"types": "./build/esm/methods.d.js",
"files": [
"build"
],
"scripts": {
"test": "mocha --reporter spec",
"cover": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/* --require @babel/register --exit",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hcphoon01/VATSIM-Data-Handler.git"
},
"keywords": [
"VATSIM",
"JavaScript",
"Data",
"Handler"
],
"author": "Harry Cameron <hcphoon01@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hcphoon01/VATSIM-Data-Handler/issues"
},
"homepage": "https://github.com/hcphoon01/VATSIM-Data-Handler#readme",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/register": "^7.13.8",
"@types/node": "^14.14.34",
"@types/request": "^2.48.5",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-files": "^1.4.0",
"chai-json": "^1.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.22.0",
"istanbul": "^1.1.0-alpha.1",
"jshint": "^2.12.0",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"typescript": "^4.2.3"
},
"dependencies": {
"request": "^2.88.0"
}
}