forked from adrianengine/jquery-spectragram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 KB
/
package.json
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
{
"name": "spectragram",
"version": "1.0.3",
"description": "An easy jQuery plugin for Instagram API to fetch and display user, popular or tags photo feeds inside your web application or site.",
"main": "spectragram.js",
"files": [
"spectragram.js",
"spectragram.min.js"
],
"author": "Adrian Quevedo <npm@adrianquevedo.com> (http://adrianquevedo.com/)",
"homepage": "http://spectragram.js.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adrianengine/jquery-spectragram.git"
},
"bugs": {
"url": "https://github.com/adrianengine/jquery-spectragram/issues"
},
"keywords": [
"jquery-plugin",
"ecosystem:jquery",
"gallery",
"instagram",
"photos",
"spectragram"
],
"devDependencies": {
"jshint": "^2.9.1",
"uglify-js": "^2.6.1"
},
"scripts": {
"build": "npm run lint && npm run minify",
"minify": "./node_modules/.bin/uglifyjs -o spectragram.min.js spectragram.js",
"lint": "jshint spectragram.js"
}
}