-
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) · 855 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 855 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": "@ros2jsguy/node-blink1-async",
"version": "0.1.6",
"description": "Asynchronous TypeScript api for the node-blink1 package",
"main": "dist/blink1-async.js",
"types": "dist/blink1-async.d.ts",
"scripts": {
"build": "npx tsc",
"build-docs": "npx typedoc --out docs blink1-async.ts",
"postbuild-docs": "npx cpy blink1-raspi.jpg docs/"
},
"keywords": [
"Blink1",
"blink(1)",
"led"
],
"author": "ros2jsguy <66370745+ros2jsguy@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "https://github.com/ros2jsguy/node-blink1-async.git"
},
"license": "MIT",
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/node": "^15.12.1",
"cpy-cli": "^3.1.1",
"typedoc": "^0.21.1",
"typescript": "^4.3.2"
},
"dependencies": {
"node-blink1": "^0.5.1"
}
}