-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 942 Bytes
/
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
{
"name": "hc-sr501-sensor",
"version": "0.1.2",
"description": "Node.js based API for the HC-SR501 motion sensor",
"main": "./dist/cjs/index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon index.ts",
"build": "rm -rf ./dist/ && npm run build:cjs",
"build:esm": "tsc --module ES2020 --outDir ./dist/esm",
"build:cjs": "tsc --outDir ./dist/cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serhat-m/hc-sr501-sensor.git"
},
"author": "serhat-m",
"license": "ISC",
"bugs": {
"url": "https://github.com/serhat-m/hc-sr501-sensor/issues"
},
"homepage": "https://github.com/serhat-m/hc-sr501-sensor#readme",
"dependencies": {
"onoff": "^6.0.3"
},
"devDependencies": {
"@types/node": "latest",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"keywords": ["motion", "sensor", "motion-sensor", "hcsr501", "raspberry"]
}