-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
47
48
49
50
{
"name": "mtgio",
"version": "0.0.0",
"description": "mtgio javascript api",
"jsnext:main": "dist/index.js",
"main": "dist/index.umd.js",
"umd:moduleName": "mtgio",
"repository": {
"url": "[email protected]:rhysburnie/mtgio.git",
"type": "git"
},
"author": "Rhys Burnie <[email protected]> (http://rhysburnie.me/)",
"license": "MIT",
"dependencies": {
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-eslint": "^7.2.2",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-ava": "^4.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"fetch-mock": "^5.10.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1"
},
"scripts": {
"test": "ava",
"test:remote": "ava **/*.remoteTest.js",
"lint": "eslint .",
"build:dist": "rollup -c"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
}
}