-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 KB
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
{
"name": "pocketguide-web-server",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "node server.js",
"test:lint": "standard",
"test:unit": "jest",
"test": "npm run test:lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jayfunk/pocketguide-web-server.git"
},
"author": "Andrew Hutchings <andrew.hutchings@gmail.com> (http://andrewhutchings.com)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/jayfunk/pocketguide-web-server/issues"
},
"homepage": "https://github.com/jayfunk/pocketguide-web-server#readme",
"dependencies": {
"bluebird": "^3.3.5",
"csv": "^0.4.6",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"googleapis": "^4.0.0",
"lodash": "^4.6.1",
"memjs": "^0.9.0",
"request-promise": "^2.0.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.16.0",
"jest": "^16.0.1",
"standard": "^8.3.0"
},
"babel": {
"env": {
"test": {
"presets": [
"es2015"
]
}
}
},
"standard": {
"env": {
"jest": true
}
}
}