-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
49 lines (49 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
{
"name": "lirc_web",
"description": "A NodeJS / Express app that creates a web UI + API for LIRC",
"main": "app.js",
"version": "0.3.1",
"preferGlobal": true,
"dependencies": {
"compression": "^1.6.0",
"consolidate": "^0.13.1",
"express": "^4.13.0",
"lirc_node": "0.0.4",
"lodash": "^3.10.1",
"morgan": "^1.6.1",
"swig": "^1.4.2"
},
"devDependencies": {
"eslint": "^1.10.0",
"eslint-config-airbnb": "^3.1.0",
"eslint-plugin-react": "^3.15.0",
"grunt": "0.4.5",
"grunt-contrib-cssmin": "^1.0.0",
"grunt-contrib-less": "^1.1.0",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "0.6.1",
"grunt-develop": "^0.4.0",
"grunt-eslint": "17.3.1",
"jquery": "^2.2.0",
"jsdom": "^7.2.2",
"load-grunt-tasks": "^3.4.0",
"mocha": "2.3.4",
"nodemon": "1.8.1",
"should": "^8.1.1",
"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/**",
"test:watch": "NODE_ENV=test mocha --require should --require test/common.js --watch --reporter dot lib/** test/** ",
"lint-js": "eslint app.js lib/** test/**"
},
"repository": {
"type": "git",
"url": "git://github.com/alexbain/lirc_web.git"
},
"author": "Alex Bain <alex@alexba.in>"
}