-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.27 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
47
48
49
50
{
"name": "browser-gyazo-upload",
"version": "0.2.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "standard */**.js && ava -v --require ./test/helpers/setup.js ",
"build": "browserify src/index.js -o dist/index.js -t [babelify]",
"build-example": "browserify example/example.js -o example/example.dist.js -t [babelify]",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gyazo/browser-gyazo-upload.git"
},
"author": "pastak <pasta0915@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gyazo/browser-gyazo-upload/issues"
},
"standard": {
"globals": ["fetch"],
"ignore": ["example/example.dist.js"]
},
"babel": {
"presets": [
"es2015",
"es2016"
]
},
"ava": {
"babel": "inherit"
},
"homepage": "https://github.com/gyazo/browser-gyazo-upload#readme",
"devDependencies": {
"ava": "^0.15.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2016": "^6.11.3",
"babel-register": "^6.11.6",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"canvas": "^1.4.0",
"fetch-mock": "^5.0.3",
"jsdom": "^9.4.1",
"standard": "^7.1.2"
},
"dependencies": {
"whatwg-fetch": "^1.0.0"
}
}