-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.45 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
{
"name": "applesmc-fan-control",
"description": "applesmc-fan-control",
"version": "1.0.0",
"scripts": {
"start": "node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm -r dotenv/config src/index.ts",
"debug": "node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm -r dotenv/config --inspect src/index.ts",
"test": "ts-mocha",
"test:coverage": "nyc npm t",
"lint": "eslint --quiet --no-error-on-unmatched-pattern ./src --ext .js,.jsx,.ts,.tsx",
"build": "tsc && pkg -t node16-linux lib/index.js -o dist/applesmc-fan-control",
"deploy": "yarn build && sudo systemctl restart applesmc-fan-control.service"
},
"packageManager": "yarn@3.2.0",
"dependencies": {
"bezier-easing": "^2.1.0",
"dotenv": "^16.0.1",
"pkg": "^5.8.0",
"sinon": "^14.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.1",
"@types/dotenv": "^8.2.0",
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.1",
"@types/node": "^16",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"chai": "^4.3.6",
"eslint": "^8.20.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}