-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
69 lines (69 loc) · 1.78 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
{
"name": "tjbot",
"version": "2.0.2",
"description": "Node.js library for writing TJBot recipes",
"main": "dist/cjs/tjbot.js",
"module": "dist/mjs/tjbot.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"exports": {
".": {
"import": "./dist/mjs/tjbot.js",
"require": "./dist/cjs/tjbot.js"
}
},
"dependencies": {
"bluebird": "^3.7.2",
"color-model": "^0.2.2",
"colornames": "^1.1.1",
"fifo": "^2.3.0",
"ibm-watson": "^5.7.0",
"mic": "^2.1.2",
"node-raspistill": "^1.0.1",
"pigpio": "^3.2.3",
"rpi-ws281x-native": "^0.10.1",
"semaphore": "^1.1.0",
"sleep": "^6.3.0",
"sound-player": "^1.0.13",
"temp": "^0.9.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"braintree-jsdoc-template": "^3.3.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"jsdoc": "^3.6.5",
"typescript": "^4.4.4"
},
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "tsc -p tsconfig-mjs.json && tsc -p tsconfig-cjs.json",
"postbuild": "sh fixup.sh",
"test": "jest test.tjbotlib.js",
"generate-docs": "jsdoc --configure .jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibmtjbot/tjbotlib.git"
},
"keywords": [
"tjbot"
],
"author": "TJBot",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ibmtjbot/tjbotlib/issues"
},
"homepage": "https://github.com/ibmtjbot/tjbotlib#readme"
}