-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "aviation-data",
"version": "1.0.1",
"description": "static aviation data (e.g. airfields, aircraft names)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"data/**/*"
],
"scripts": {
"test": "jest && eslint src test",
"watch": "tsc --watch",
"build": "tsc --build",
"clean": "tsc --build --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexChesters/aviation-data.git"
},
"author": "Alex Chesters",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexChesters/aviation-data/issues"
},
"homepage": "https://github.com/AlexChesters/aviation-data#readme",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"babel-jest": "^28.1.3",
"csv-parse": "^5.3.0",
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
}
}