-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.6 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
51
52
53
54
55
{
"private": false,
"name": "html5-file-selector",
"version": "2.1.0",
"description": "A wrapper library for more easily handling html5 drag/drop and file input file and folder selections",
"homepage": "https://www.github.com/quarklemotion/html5-file-selector",
"repository": "quarklemotion/html5-file-selector",
"author": "Michael Fields - @quarklemotion",
"contributors": [
"Michael Fields - @quarklemotion"
],
"license": "MIT",
"keywords": [],
"main": "index.js",
"jsnext:main": "index.es.js",
"babel": {
"presets": [
"latest",
"stage-0"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "6.16.x",
"babel-core": "6.17.x",
"babel-eslint": "7.0.x",
"babel-polyfill": "6.23.x",
"babel-preset-latest": "6.16.x",
"babel-preset-stage-0": "6.16.x",
"babel-register": "6.16.x",
"chai": "4.0.0-canary.1",
"coveralls": "2.11.x",
"del": "2.2.x",
"eslint": "3.8.x",
"eslint-plugin-import": "2.2.x",
"istanbul": "1.1.0-alpha.1",
"mocha": "3.1.x",
"rollup": "0.36.x",
"rollup-plugin-babel": "2.6.x",
"sinon": "2.0.0-pre.3"
},
"scripts": {
"lint": "eslint src",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "node tools/build",
"prepublish": "npm run build"
}
}