-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1013 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
41
42
{
"name": "upgrade_test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2017": "^6.22.0",
"babel-register": "^6.23.0",
"influx": "=5.0.4"
},
"babel": {
"sourceMaps": false,
"presets": [
"es2017"
],
"plugins": [
"transform-runtime",
"transform-es2015-modules-commonjs",
"transform-class-properties",
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
]
],
"ignore": [
"node_modules"
]
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dmitry Chirkin <josser@nixsolutions.com>",
"license": "MIT"
}