-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "pic_sizer",
"version": "1.0.0",
"description": "A picture resizing tool.",
"main": "./lib/api.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "npm install && ./tests/runall.sh",
"start": "node server.js",
"docs": "rm -rf ./restdocs ./npmdocs && ./node_modules/.bin/apidoc -f 'server.js' -o ./restdocs && ./node_modules/.bin/jsdoc lib/* README.md -d ./npmdocs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexisJackson/pic_sizer.git"
},
"author": "Alexis Jackson",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlexisJackson/pic_sizer/issues"
},
"homepage": "https://github.com/AlexisJackson/pic_sizer#readme",
"dependencies": {
"apidoc": "git+https://github.com/Beginnerprise/apidoc.git",
"body-parser": "1.15.2",
"cookie-parser": "1.4.3",
"docopt": "0.6.2",
"express": "^4.14.0",
"express-session": "1.14.2",
"iphb-logs": "0.0.18",
"jsdoc": "git+https://github.com/Beginnerprise/jsdoc.git",
"request": "^2.83.0",
"shell-quote": "^1.6.1"
},
"engines": {
"node": "7.7.2",
"npm": "4.1.2"
}
}