-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 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
{
"name": "kairosdb-client",
"version": "0.4.2",
"description": "KairosDB Client",
"main": "dist/index.js",
"directories": {
"example": "examples"
},
"files": [
"dist",
"README.md",
"package.json",
"examples"
],
"scripts": {
"prestart": "npm run build",
"build": "npm run build:clean && npm run build:dist",
"build:clean": "rimraf dist",
"build:dist": "babel src -d dist",
"test": "mocha -w --require babel-core/register"
},
"repository": {
"type": "git",
"url": "https://github.com/Rick83600/kairosdb-client.git"
},
"keywords": [
"kairosdb",
"client"
],
"author": "max <[email protected]>",
"contributors": [
"tristan <[email protected]>"
],
"license": "ISC",
"dependencies": {
"async": "^2.6.0",
"event-stream": "^3.2.2",
"moment": "^2.10.6",
"needle": "^2.2.0",
"reconnect-net": "1.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"mocha": "^5.0.1",
"rimraf": "^2.6.2"
}
}