tello-api-client
Version:
Tello API Client for Node.js.
32 lines (31 loc) • 910 B
JSON
{
"name": "tello-api-client",
"version": "0.0.4",
"description": "Tello API Client for Node.js.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "git@github.com:chibi929/tello-api-client.git",
"author": "chibi929",
"license": "MIT",
"keywords": [
"Tello"
],
"dependencies": {},
"devDependencies": {
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.1",
"mocha": "^5.2.0",
"typescript": "^2.9.1"
},
"scripts": {
"build": "tsc",
"prerelease-build": "npm run release-clean",
"release-build": "yarn && npm run build",
"postrelease-build": "rm -rf node_modules && yarn --prod",
"clean": "rm -rf lib",
"release-clean": "npm run clean && rm -rf node_modules",
"preversion": "npm run release-clean && yarn && npm run build && npm run test",
"postversion": "git push origin --tags",
"test": "mocha lib/*.spec.js"
}
}