-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.88 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "influx-api",
"version": "0.1.4",
"description": "Thin wrapper around Axios HTTP library which eases working with Influx HTTP API",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/jmarceli/influx-api.git"
},
"author": "Jan Grzegorowski <grzegorowski@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rimraf lib",
"test": "yarn jest src",
"test:watch": "BABEL_ENV=test yarn jest src --watch --notify",
"cover": "jest src --coverage",
"lint": "yarn eslint src",
"build": "yarn rollup -c",
"precommit": "yarn flow src && yarn lint && yarn test",
"prepublishOnly": "yarn clean && yarn lint && yarn test && yarn build"
},
"engines": {
"node": ">= 8.x"
},
"keywords": [
"influx",
"influx-http-api"
],
"dependencies": {
"axios": "^0.18.0",
"qs": "^6.5.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-flow-runtime": "^0.17.0",
"babel-plugin-rewire": "^1.2.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^2.50.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.1",
"flow-bin": "^0.81.0",
"flow-typed": "^2.5.1",
"husky": "^1.0.0-rc.15",
"jest": "^23.6.0",
"jest-mock-axios": "^2.1.11",
"rimraf": "^2.6.2",
"rollup": "^0.66.2",
"rollup-plugin-babel": "3",
"rollup-plugin-cpy": "^1.0.0",
"rollup-plugin-flow": "^1.1.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
}
}