-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.72 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "nodesos",
"version": "2.0.0",
"description": "A module to communicate with LifeSOS alarm systems.",
"repository": {
"type": "git",
"url": "https://github.com/bratanon/nodesos.git"
},
"license": "MIT",
"author": "Emil Stjerneman <emil@stjerneman.com>",
"main": "dist/main.js",
"module": "dist/module.js",
"source": "src/index.ts",
"types": "dist/types.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "parcel build --no-source-maps --no-cache",
"format:package": "npx sort-package-json",
"test": "jest",
"lint": "eslint src",
"prettier": "prettier src --write",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"src/**/*.ts": [
"npm run lint",
"npm run prettier"
],
"package.json": "npm run format:package"
},
"dependencies": {
"log4js": "^6.9.1",
"luxon": "^3.5.0",
"sprintf-js": "^1.1.3"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@parcel/packager-ts": "^2.13.3",
"@parcel/transformer-typescript-types": "^2.13.3",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.4.2",
"@types/node": "^20.16.15",
"@types/sprintf-js": "^1.1.4",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"npm-run-all": "^4.1.5",
"parcel": "^2.13.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"engines": {
"node": ">=20.0.0"
}
}