-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 764 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 764 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
{
"name": "esa-node",
"description": "esa.io API v1 client library for nodejs.",
"version": "0.2.2",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "mottox2 <y.mottox2@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/node": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-typescript": "^7.0.0-rc.1",
"@types/node": "^10.5.3",
"typescript": "^2.9.2"
},
"dependencies": {
"axios": "^0.18.0"
},
"scripts": {
"test": "babel-node src/index.test.ts --extensions .ts",
"build": "tsc --emitDeclarationOnly && babel src/index.ts --out-dir lib/ --extensions .ts",
"prepublish": "npm run build"
}
}