forked from hackerspace-bootstrap/strichliste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.64 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
53
54
55
56
57
58
{
"name": "strichliste",
"version": "1.7.0",
"description": "keep track of your balance",
"main": "server.js",
"scripts": {
"start": "node server.js",
"setup": "npm run setup:dependencies && npm run test && npm run database",
"setup:database": "node createDatabase.js",
"setup:dependencies": "npm i",
"test": "rm -f testdata.sqlite && npm run test:unit && npm run test:integration",
"test:unit": "NODE_ENV=test mocha --reporter dot tests/unit",
"test:integration": "NODE_ENV=test mocha --reporter dot --timeout 10000 tests/integration",
"travis": "npm run setup:dependencies && npm run test"
},
"repository": {
"type": "git",
"url": "git://github.com/hackerspace-bootstrap/strichliste.git"
},
"keywords": [
"checklist",
"strichliste"
],
"author": "Hackerspace Bootstrap <[email protected]>",
"contributors": [
"Christopher Schirner <[email protected]>",
"Manuel Ernst <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hackerspace-bootstrap/strichliste/issues"
},
"devDependencies": {
"chai": "3.5.0",
"mocha": "3.4.1",
"sandboxed-module": "2.0.3",
"sinon": "1.17.5",
"sinon-chai": "2.8.0",
"supertest": "2.0.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"configurations": "^3.0.0",
"cors": "^2.8.4",
"express": "^4.16.2",
"figlet": "^1.2.0",
"furg": "^1.1.1",
"hoek": "^4.0.2",
"moment": "^2.20.1",
"morgan": "^1.9.0",
"mqtt": "^2.15.0",
"once": "^1.4.0",
"seq": "^0.3.5",
"sqlite3": "^3.1.13",
"squel": "^5.12.0",
"yargs": "^10.1.0"
}
}