-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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": "td",
"version": "0.5.0",
"author": "Jeff Yuan <jwyuan@alum.mit.edu>",
"contributors": [
"Kai Sasaki <lewuathe@me.com>"
],
"description": "Node.js client for Treasure Data",
"dependencies": {
"core-js": "^3.6.4",
"jsdoc": "^3.5.5",
"merge": "^2.1.1",
"nock": "^9.0.0",
"request": "^2.88.2"
},
"repository": {
"type": "git",
"url": "https://github.com/treasure-data/td-client-node.git"
},
"license": "Apache-2.0",
"main": "./dist/index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "babel lib -d dist",
"prepublish": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"acorn": "^5.7.4",
"blanket": "^1.2.3",
"coveralls": "^3.0.11",
"mocha": "^4.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"minimist": "^1.2.6",
"diff": "^3.5.0",
"kind-of": "^6.0.3"
}
}