-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "@danielhammerl/onoff-wrapper",
"type": "commonjs",
"version": "1.0.0",
"keywords": [
"nodejs",
"typescript",
"lib"
],
"engines": {
"node": ">= 16.0"
},
"files": [
"build/",
"package.json",
"package-lock.json"
],
"main": "./build/index.js",
"scripts": {
"build": "dhammerl-cli build",
"lint": "eslint src/",
"test": "echo 'no Tests specified'; exit 0;",
"lint:fix": "eslint src/ --fix",
"lint:types": "tsc --noEmit",
"todo": "leasot -x 'src/**/*.ts'",
"lint:all": "npm run lint:fix && npm run lint:types && npm run todo",
"prepare": "husky install"
},
"dependencies": {
"onoff": "^6.0.3"
},
"devDependencies": {
"@types/node": "^16.11.14",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"eslint": "^8.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^40.0.0",
"husky": "^7.0.4",
"leasot": "^12.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}