-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "eventql-js",
"version": "0.0.1",
"description": "JavaScript Interface for the EventQL API",
"main": "lib/index.js",
"scripts": {
"example-createTable": "node index.js createTable",
"example-insert": "node index.js insert",
"lint": "$(npm bin)/standard",
"build": "$(npm bin)/babel ./src -d ./lib"
},
"author": "Craftship Ltd <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^2.2.0",
"eventsource": "^0.2.1",
"isomorphic-fetch": "^2.2.1"
},
"standard": {
"parser": "babel-eslint"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-async-to-generator",
"transform-class-properties",
"transform-runtime"
]
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"standard": "^7.1.2"
}
}