-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "reveal-leap-motion",
"description": "A plugin which allows you to use your Leap Motion device to control basic navigation of your Reveal.js presentation",
"version": "1.1.0",
"license": "MIT",
"author": "Rory Hardy & James Sun",
"bugs": {
"url": "https://github.com/gneatgeek/reveal-leap-motion/issues"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.18.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"jsdom": "^11.11.0",
"mocha": "^5.2.0",
"nyc": "^12.0.1",
"sinon": "^5.0.10",
"webpack": "^4.10.2",
"webpack-cli": "^3.0.1"
},
"dependencies": {
"leapjs": "^0.6.4",
"lodash": "^4.17.10"
},
"homepage": "https://github.com/gneatgeek/reveal-leap-motion#readme",
"keywords": [
"leap-motion",
"leapjs",
"reveal-js",
"reveal"
],
"main": "src/index.js",
"nyc": {
"include": [
"src/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/gneatgeek/reveal-leap-motion.git"
},
"scripts": {
"build": "webpack",
"lint-js": "eslint .",
"test": "npm run lint-js && npm run test-js",
"test-js": "NODE_ENV=testing nyc mocha"
}
}