-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
42
43
44
45
46
{
"name": "gfycat-sdk",
"version": "1.4.18",
"description": "Javascript module for gfycat.com API supporting promises and callbacks",
"main": "lib/index.js",
"scripts": {
"build": "rimraf dist && NODE_ENV=production webpack",
"compile": "rimraf lib && babel src -d lib",
"dev": "python3 -m http.server | NODE_ENV=development webpack",
"prepublish": "npm run compile && npm run build",
"test": "npm run compile && istanbul cover _mocha -- ./test.js -R spec"
},
"browser": "./dist/gfycat-sdk.umd.bundle.min.js",
"repository": {
"url": "git+https://github.com/gfycat/gfycat-sdk.git",
"type": "git"
},
"keywords": [
"gfycat",
"gif",
"api",
"sdk"
],
"author": "Josh Kang, [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/gfycat/gfycat-sdk/issues"
},
"homepage": "https://github.com/gfycat/gfycat-sdk#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"qs": "^6.4.0",
"rimraf": "^2.6.1",
"sinon": "^1.17.6",
"webpack": "^2.2.1"
},
"dependencies": {
"babel-runtime": "^6.23.0"
}
}