-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.1 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
{
"name": "callsign",
"version": "1.0.3",
"description": "Amateur radio and airline call sign inquiry",
"main": "src/esm/index.js",
"scripts": {
"build:min": "webpack --config build/webpack.prodmin.config.js",
"build:full": "webpack --config build/webpack.prod.config.js",
"build": "npm run build:full && npm run build:min",
"uploaddata:cty": "node tools/ctytojson.js",
"uploaddata:aircraftDB": "node tools/spider-aircraft.js",
"uploaddata:airlineDB": "node tools/spider-airline.js",
"uploaddata": "npm run uploaddata:cty && npm run uploaddata:aircraftDB && npm run uploaddata:airlineDB",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"callsign"
],
"author": "YuYanDev",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"cheerio": "^1.0.0-rc.3",
"cheerio-tableparser": "^1.0.1",
"path": "^0.12.7",
"superagent": "^5.1.0",
"superagent-proxy": "^2.0.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6"
},
"dependencies": {}
}