-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.37 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": "omx-manager",
"version": "0.1.4",
"description": "Provide a simple and complete interface to omxplayer (Raspberry Pi player).",
"main": "lib/main.js",
"scripts": {
"test": "mocha test/test",
"typecheck": "flow src",
"docs": "documentation build src/lib/** -f html -o docs",
"build": "rm -rf build/ && babel src -d ./build --ignore src/decls"
},
"repository": {
"type": "git",
"url": "https://github.com/vabatta/omx-manager"
},
"keywords": [
"Raspberry",
"pi",
"Raspberry Pi",
"rpi",
"omxplayer",
"omx",
"video",
"player"
],
"author": "Valerio Battaglia",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.3",
"babel-loader": "^6.2.4",
"babel-plugin-remove-comments": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^1.9.1",
"eslint": "^2.8.0",
"eslint-config-standard": "^5.2.0",
"eslint-plugin-flow-vars": "^0.3.0",
"eslint-plugin-mocha": "^2.2.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"flow-bin": "^0.23.1",
"gulp": "^3.9.1",
"mocha": "^1.20.1"
},
"dependencies": {
"async-es": "^2.0.0-rc.3"
}
}