-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
142 lines (142 loc) · 3.05 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "minidrone",
"version": "0.0.0-semantically-released",
"description": "A library for sending BLE commands to a Mini Drone",
"main": "lib/index.js",
"files": [
"lib",
"README.md"
],
"keywords": [
"bluetooth",
"ble",
"parrot",
"mambo",
"rolling-spider",
"drone",
"quadcopter",
"multicopter",
"flight"
],
"author": {
"name": "Jon Gear",
"email": "[email protected]",
"url": "http://jongear.io"
},
"maintainers": [
{
"name": "Jon Gear",
"email": "[email protected]",
"url": "http://jongear.io"
},
{
"name": "Jack Watson-Hamblin",
"email": "[email protected]"
},
{
"name": "Chris Williams",
"email": "[email protected]"
},
{
"name": "Chris Taylor",
"email": "[email protected]",
"url": "http://christhebaron.co.uk"
},
{
"name": "Linda Nichols",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "[email protected]:jongear/minidrone.git"
},
"license": "MIT",
"os": [
"darwin",
"linux",
"win32",
"android"
],
"bugs": {
"url": "https://github.com/jongear/minidrone/issues"
},
"scripts": {
"commit": "git-cz",
"dev": "watch 'npm run build' src",
"test": "jest",
"test:coverage": "jest --coverage",
"test:clear-cache": "jest --clearCache",
"test:watch": "npm test -- --watch",
"validate": "npm run test:coverage",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:watch": "watch 'npm run lint'",
"prebuild": "rimraf lib",
"build": "tsc"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run validate"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"testURL": "http://localhost",
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/index.ts",
"!src/eg/**"
]
},
"dependencies": {
"debug": "^2.1.1",
"noble-mac": "https://github.com/Timeular/noble-mac.git"
},
"devDependencies": {
"@types/debug": "0.0.31",
"@types/events": "^1.2.0",
"@types/jest": "^23.3.12",
"@types/noble": "0.0.38",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"ghooks": "^2.0.4",
"jest": "^23.6.0",
"keypress": "^0.2.1",
"prettier": "^1.15.3",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"temporal": "^0.7.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.4",
"watch": "^1.0.2"
}
}