-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
37 lines (37 loc) · 916 Bytes
/
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
{
"name": "tellojs",
"version": "0.1.113",
"description": "async based library to be able to control de dji tello drone",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:dev": "jest --watchAll",
"test:cov": "jest --coverage && codecov",
"push": "yarn test && git push",
"deploy:major": "yarn version --major",
"deploy:minor": "yarn version --minor",
"deploy:patch": "yarn version --patch",
"deploy:push": "git push && git push --tags",
"preversion": "yarn test"
},
"keywords": [
"tello",
"dji",
"drone",
"iot"
],
"repository": "[email protected]:kanekotic/tellojs.git",
"author": "kanekotic <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"codecov": "3.8.3",
"jest": "29.7.0"
},
"jest": {
"testMatch": [
"**/test/**/*-test.js"
]
}
}