forked from alexbain/lirc_web
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1023 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1023 Bytes
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
{
"name": "lirc_web",
"description": "A NodeJS / Express app that creates a web UI + API for LIRC",
"main": "app.js",
"version": "0.2.2",
"preferGlobal": true,
"dependencies": {
"express": "3.0.6",
"lirc_node": "0.0.4",
"swig": "0.13.5",
"consolidate": "0.11.0"
},
"devDependencies": {
"eslint": "1.10.0",
"eslint-config-airbnb": "2.1.1",
"grunt": "0.4.5",
"grunt-contrib-less": "1.0.1",
"grunt-contrib-uglify": "0.9.2",
"grunt-contrib-watch": "0.6.1",
"grunt-develop": "0.3.0",
"jsdom": "1.1.0",
"mocha": "2.3.4",
"nodemon": "1.8.1",
"should": "7.1.0",
"sinon": "1.17.2",
"supertest": "1.1.0"
},
"bin": {
"lirc_web": "./app.js"
},
"scripts": {
"test": "NODE_ENV=test mocha --require should --require test/common.js --reporter dot test/*.js",
"lint-js": "eslint app.js lib/**"
},
"repository": {
"type": "git",
"url": "git://github.com/alexbain/lirc_web.git"
},
"author": "Alex Bain <alex@alexba.in>"
}