-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 773 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 773 Bytes
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
{
"name": "librato-node-client",
"version": "0.2.0",
"description": "Librato Client, written in TypeScript",
"main": "dist/client.js",
"types": "src/index.d.ts",
"scripts": {
"prepare": "gulp typescript"
},
"engines": {
"node": "~4.6.1"
},
"author": "Kenshi Kawaguchi",
"license": "ISC",
"devDependencies": {
"@types/jasmine": "^2.5.52",
"@types/node": "^7.0.22",
"gulp": "^3.8.11",
"gulp-jasmine": "^2.4.0",
"gulp-typescript": "^3.1.6",
"jasmine-spec-reporter": "^2.5.0",
"typescript": "^2.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/recursify/librato-node-client"
},
"dependencies": {
"ramda": "^0.23.0",
"request": "^2.81.0",
"request-promise": "^4.2.1"
}
}