forked from bibboxen/bibbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "bibbox",
"description": "Library box - automatic borrower",
"private": true,
"dependencies": {
"architect": "0.1.13",
"debug": "^4.3.4",
"q": "^1.5.1",
"request": "^2.79.0"
},
"devDependencies": {
"assert": "^2.0.0",
"chai": "^4.3.7",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"istanbul": "^0.4.5",
"karma": "^6.4.2",
"karma-coverage": "^2.2.1",
"karma-mocha": "^2.0.1",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon-chai": "^2.0.2",
"mocha": "^10.2.0",
"nock": "^13.3.2",
"nodemon": "^3.0.1",
"should": "^13.2.3",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0",
"socket.io-client": "^4.7.2",
"supertest": "^6.3.3"
},
"scripts": {
"live": "node bootstrap.js",
"fake": "NODE_TLS_REJECT_UNAUTHORIZED=0 RFID_DEBUG=true DEBUG=bibbox:* node bootstrap.js",
"debug": "DEBUG=bibbox:* ./node_modules/.bin/nodemon bootstrap.js",
"rfid": "./start_rfid.sh",
"test": "cd test; ../node_modules/.bin/mocha",
"test-live": "cd test; LIVE=1 ../node_modules/.bin/mocha"
}
}