-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 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
51
{
"private": true,
"name": "node-github-cards",
"version": "1.0.0",
"description": "Creating images from your GitHub profile to share on your LinkedIn profile for example.",
"main": "app.js",
"scripts": {
"start": "node app",
"test": "NODE_ENV=test mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ErikvdVen/Node-GitHub-cards.git"
},
"engines": {
"node": ">=4.1.0"
},
"keywords": [
"github",
"node"
],
"author": "Erik van de Ven",
"license": "ISC",
"bugs": {
"url": "https://github.com/ErikvdVen/Node-GitHub-cards/issues"
},
"homepage": "https://github.com/ErikvdVen/Node-GitHub-cards#readme",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-browserify": "^5.0.0",
"grunt-contrib-connect": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^1.0.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-deploy": "^0.1.7",
"grunt-nodemon": "^0.4.1",
"grunt-sass": "^1.1.0",
"node-sass": "3.4.1"
},
"dependencies": {
"config-node": "^1.2.2",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-hbs": "^0.8.4",
"github": "^0.2.4",
"phantomjs2": "^2.2.0",
"webshot": "^0.18.0"
}
}