-
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) · 971 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 971 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": "webshotify",
"version": "1.0.0",
"description": "A microservice for screenshotting websites",
"main": "server.js",
"scripts": {
"test": "mocha --compilers js:babel-register ./test/**/*.spec.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://joergpatz@github.com/joergpatz/webshotify.git"
},
"keywords": [
"rest",
"api",
"capture",
"screenshot",
"website",
"phantomjs"
],
"author": "Joerg Patzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/joergpatz/webshotify/issues"
},
"homepage": "https://github.com/joergpatz/webshotify#readme",
"dependencies": {
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"ps-tree": "^1.1.0",
"restify": "^4.1.1"
},
"devDependencies": {
"mocha": "^2.5.3",
"should": "^10.0.0",
"should-http": "0.0.4",
"supertest": "^1.2.0"
}
}