forked from austinkelleher/giphy-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
38
39
40
41
{
"name": "giphy-api",
"description": "JavaScript module for the giphy.com API that supports promises and callbacks.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"prepublish": "npm run build",
"test": "mocha --ui bdd --reporter spec ./test",
"build": "./node_modules/browserify/bin/cmd.js index.js --standalone GiphyAPI > dist/giphy-api.bundle.js && ./node_modules/uglify-js/bin/uglifyjs dist/giphy-api.bundle.js --compress --output dist/giphy-api.bundle.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/austinkelleher/giphy-api"
},
"keywords": [
"giphy",
"gif",
"api"
],
"author": "Austin Kelleher, a@alk.im",
"license": "MIT",
"bugs": {
"url": "https://github.com/austinkelleher/giphy-api/issues"
},
"browser": {
"./util/http.js": "./util/http_browser.js"
},
"homepage": "https://github.com/austinkelleher/giphy-api",
"devDependencies": {
"browserify": "^14.2.0",
"chai": "^4.0.2",
"eslint-config-semistandard": "^11.0.0",
"mocha": "^3.2.0",
"sinon": "^3.1.0",
"standard": "^10.0.0",
"uglify-js": "^3.0.0"
},
"version": "1.2.7"
}