-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.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, [email protected]",
"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": "^16.2.3",
"chai": "^4.2.0",
"eslint-config-semistandard": "^13.0.0",
"mocha": "^5.2.0",
"sinon": "^7.1.0",
"standard": "^12.0.1",
"uglify-js": "^3.4.9"
},
"version": "2.0.2"
}