-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 896 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 896 Bytes
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
{
"name": "envelopresent",
"version": "0.2.0",
"description": "A simple view for a concrete purpose",
"main": "server.js",
"scripts": {
"test": "./node_modules/.bin/ava",
"dev": "./node_modules/.bin/nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chikh/envelopresent.git"
},
"keywords": [
"nodejs"
],
"author": "Georgy Chikhladze <georgiy.chikhladze@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chikh/envelopresent/issues"
},
"homepage": "https://github.com/chikh/envelopresent#readme",
"dependencies": {
"express": "^4.13.4",
"google-spreadsheet": "^2.0.3",
"lodash": "^4.13.1"
},
"devDependencies": {
"ava": "^0.15.1",
"eslint": "^2.10.2",
"nodemon": "^1.9.2"
},
"engines": {
"node": "6.2.0"
},
"ava": {
"files": [
"test/*.js"
]
}
}