-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 1022 Bytes
/
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
{
"name": "js-sdk",
"version": "0.1.0",
"description": "Hasura SDK for Javascript in the browser",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hasura/js-sdk.git"
},
"keywords": [
"hasura",
"sdk",
"js",
"javascript"
],
"author": "Tanmai Gopal",
"license": "MIT",
"bugs": {
"url": "https://github.com/hasura/js-sdk/issues"
},
"homepage": "https://github.com/hasura/js-sdk#readme",
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.0.0",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1"
},
"dependencies": {
"whatwg-fetch": "^2.0.3"
}
}