forked from opendatacam/node-moving-things-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.01 KB
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
{
"name": "node-moving-things-tracker",
"version": "0.4.2",
"description": "Tracker by detections in javascript for node.js / browsers",
"url": "https://github.com/tdurand/node-moving-things-tracker",
"main": "main.js",
"bin": {
"node-moving-things-tracker": "main.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "browserify tracker.js -t babelify --standalone movingThingsTracker -o dist/moving-things-tracker.js",
"bundle-min": "browserify tracker.js -t babelify --standalone movingThingsTracker | uglifyjs > dist/moving-things-tracker.min.js",
"dist": "npm run bundle && npm run bundle-min"
},
"author": "@tdurand",
"contributors": [
"Benedikt Groß <b-g> (http://benedikt-gross.de/)"
],
"license": "MIT",
"dependencies": {
"lodash.isequal": "^4.5.0",
"minimist": "^1.2.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.2.0",
"uglifyjs": "^2.4.11"
}
}