-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
56
57
58
{
"name": "traffic.js",
"version": "0.0.8",
"description": "Process and visualise aircraft trajectories",
"type": "module",
"main": "dist/traffic.node.js",
"module": "dist/traffic.js",
"unpkg": "dist/traffic.min.js",
"jsdeliver": "dist/traffic.min.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rollup -c",
"lint": "prettier -c ./src ./test",
"postbuild": "tsc",
"prebuild": "rimraf build dist",
"prepublishOnly": "npm run test & npm run lint & npm run build",
"serve": "rollup -c --environment SERVE",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/xoolive/traffic.js"
},
"keywords": [
"aviation"
],
"author": "Xavier Olive",
"license": "MIT",
"dependencies": {
"@turf/turf": "^6.5.0",
"arquero": "^4.8.8",
"d3": "^7.3.0",
"fflate": "^0.7.3",
"simplify-js": "^1.2.4"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/chai": "^4.3.0",
"@types/chai-datetime": "^0.0.37",
"@types/d3": "^7.1.0",
"@types/mocha": "^9.1.0",
"@types/node": "^15.6.1",
"chai": "^4.3.6",
"chai-datetime": "^1.8.0",
"jshint": "^2.13.4",
"mocha": "^9.2.2",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}