-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.04 KB
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
{
"name": "node-pantilt-hat",
"version": "0.0.1",
"description": "Pimoroni PanTilt servo and lighting HAT for node.js",
"main": "index.js",
"scripts": {
"build": "tsc index.ts && tsc index.ts -d",
"test": "jest"
},
"author": "chikoboo",
"license": "MIT",
"dependencies": {
"@types/i2c-bus": "^1.0.18",
"i2c-bus": "^3.2.0"
},
"devDependencies": {
"@types/jest": "^23.1.2",
"@types/power-assert": "^1.5.0",
"jest": "^23.2.0",
"power-assert": "^1.6.0",
"ts-jest": "^22.4.6",
"typescript": "^2.9.2"
},
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:chikoboo/node-pantilt-hat.git"
},
"keywords": [
"Pimoroni",
"PanTilt",
"HAT",
"Raspberry",
"Pi"
],
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "./tsconfig.json"
}
},
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}