-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
31 lines (31 loc) · 975 Bytes
/
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
{
"name": "jammerjs",
"version": "0.0.0",
"description": "A Cycle.js driver for pose detection using TensorFlow.js-powered PoseNet",
"scripts": {
"prebuild": "rimraf lib && mkdirp lib",
"build": "babel src -d lib",
"browserify": "mkdirp dist && browserify src/index.js --standalone HandtrackTouch -t babelify --outfile dist/index.js"
},
"author": "Michael Jae-Yoon Chung",
"license": "MIT",
"bugs": "https://github.com/mjyc/jammerjs/issues",
"repository": "https://github.com/mjyc/jammerjs",
"main": "lib/index.js",
"dependencies": {
"hammer-simulator": "0.0.1",
"handtrackjs": "0.0.13"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"hammerjs": "^2.0.8",
"live-server": "^1.2.0",
"mkdirp": "~0.5.0",
"rimraf": "^2.6.3"
}
}