-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "tfluke-app",
"version": "0.1.0",
"description": "Travel App",
"main": "src/index.js",
"scripts": {
"test": "ava -s",
"test-xunit": "mkdir -p reports && ava -s --tap | tap-xunit > reports/tests.xml",
"build": "mkdir -p bin && browserify src/client.js -o bin/clientscripts.js && browserify src/serviceworker.js -o bin/serviceworker.js",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/lucas42/lucos_transport.git"
},
"keywords": [
"travel"
],
"author": "Luke Blaney",
"license": "N/A",
"bugs": {
"url": "https://github.com/lucas42/lucos_transport/issues"
},
"homepage": "https://github.com/lucas42/lucos_transport",
"devDependencies": {
"ava": "^6.2.0",
"browserify": "^17.0.1"
},
"dependencies": {
"express": "^4.21.2",
"fs-readfile-promise": "^3.0.1",
"htmlparser2": "^9.1.0",
"lucos_pubsub": "^0.0.4",
"mespeak": "^2.0.2",
"moment-timezone": "^0.5.46",
"mustache": "^4.2.0",
"mustache-express": "^1.3.2",
"node-fetch": "^2.7.0",
"tap-xunit": "^2.4.1",
"xml2js": "^0.6.2"
},
"ava": {
"files": [
"tests/*.js"
]
}
}