-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "sensehat-node-ipc",
"version": "1.0.0",
"description": "A Node.js package to read sensor data from the Raspberry Pi Sense HAT through IPC.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"postinstall": "python3 -m venv venv --system-site-packages && . venv/bin/activate && pip install -r requirements.txt",
"clean": "rimraf dist/*",
"build": "tsc",
"clean-build": "npm run clean && npm run build",
"test": "jest",
"test:unit": "jest --testNamePattern \"^(?!.*@integration)\"",
"test:integration": "jest --testNamePattern \"@integration\""
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/src/**/*.test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"author": "Marco Christiani",
"license": "GPL-3.0",
"dependencies": {
"google-protobuf": "^3.21.2",
"zeromq": "^5.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/zeromq": "^5.2.2",
"jest": "^29.6.2",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-protoc-gen": "^0.15.0",
"typescript": "^5.1.6"
}
}