forked from AKST/nuimo-client.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "nuimo-client-ts",
"author": "wind-rider",
"version": "0.4.0",
"description": "TypeScript port of nuimo-client.js with additional features like support for multiple Nuimos.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wind-rider/nuimo-client.ts"
},
"keywords": [
"Nuimo",
"Senic",
"TypeScript",
"ES6"
],
"files": [
"lib",
"typings.json"
],
"scripts": {
"test": "gulp test",
"postinstall": "echo \"Nuimo-client-ts is installed.\n Now run 'typings install --ambient noble node' to install the required typings\""
},
"dependencies": {
"noble": "^1.3.0",
"source-map-support": "^0.4.0"
},
"devDependencies": {
"assert": "^1.3.0",
"del": "2.0.2",
"dotbin": "^1.0",
"dts-generator": "^1.7",
"gulp": "^3.9.0",
"gulp-help": "^1.6.0",
"gulp-inject": "3.0.0",
"gulp-jasmine": "^2.0.1",
"gulp-sequence": "0.4.1",
"gulp-tsconfig-files": "0.0.2",
"gulp-tslint": "^3.1",
"jasmine": "^2.3.1",
"sinon": "^1.17.3",
"tslint": "^3.6.0",
"typescript": "^1.8.9",
"typings": "^0.7.9"
},
"engines": {
"node": ">=4.0.0"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts"
}