generated from pedrolamas/typescript-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.91 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
{
"name": "silabs-image-parser",
"version": "0.0.1",
"description": "Silabs Image Parser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run lint && npm run build && npm test",
"test": "cross-env TS_NODE_FILES=true mocha",
"lint": "npm run lint:code && npm run lint:other",
"lint:code": "npm run eslint:defaults",
"lint:other": "npm run prettier:defaults -- --check",
"format": "npm run format:code && npm run format:other",
"format:code": "npm run eslint:defaults -- --fix",
"format:other": "npm run prettier:defaults -- --write",
"eslint:defaults": "eslint . --ext .ts,.tsx,.js,.jsx",
"prettier:defaults": "prettier \"**/*.{json,md,markdown,css,scss,yaml,yml}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedrolamas/silabs-image-parser.git"
},
"keywords": [],
"author": "Pedro Lamas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedrolamas/silabs-image-parser/issues"
},
"homepage": "https://github.com/pedrolamas/silabs-image-parser#readme",
"engines": {
"node": ">=16.0",
"npm": ">=7.0"
},
"dependencies": {
"buffer-crc32": "^0.2.13"
},
"devDependencies": {
"@types/buffer-crc32": "^0.2.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^10.2.0",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"zigbee-herdsman-converters": "^15.0.10"
}
}