This repository has been archived by the owner on Feb 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.44 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
{
"name": "alfred-personal-assistant",
"description": "Minimal server for S.A.R.A.H.",
"version": "1.0.0",
"author": "Yoanm <[email protected]>",
"license": "GPL-3.0",
"licenses": [
{
"type": "GPL-3.0",
"url": "https://github.com/yoanm/alfred-personal-assistant/blob/master/LICENSE"
}
],
"scripts": {
"start": "node index.js",
"test": "./node_modules/.bin/mocha --reporter spec",
"codestyle": "./node_modules/.bin/eslint -c .eslintrc.json .",
"coverage-clover": "./node_modules/.bin/babel-node ./node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha --report clover",
"coverage": "./node_modules/.bin/babel-node ./node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha --report html"
},
"repository": "https://github.com/yoanm/alfred-personal-assistant.git",
"dependencies": {
"config": "^1.24.0",
"hapi": "^16.1.0",
"moment": "^2.17.1",
"nested-error-stacks": "^2.0.0",
"request": "^2.79.0",
"request-promise-native": "^1.0.3",
"winston": "^2.3.1",
"xml2js": "^0.4.17"
},
"bugs": {
"url": "https://github.com/yoanm/alfred-personal-assistant/issues"
},
"homepage": "https://github.com/yoanm/alfred-personal-assistant",
"devDependencies": {
"babel-cli": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^2.9.0",
"eslint-config-google": "^0.5.0",
"istanbul": "^1.0.0-alpha",
"mocha": "^3.1.2"
},
"main": "index.js"
}