-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 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
{
"name": "@mariusrumpf/pid-controller",
"version": "1.0.0",
"description": "PID controller written in node.js",
"author": "Marius Rumpf",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/MariusRumpf/pid-controller"
},
"keywords": [
"pid",
"controller"
],
"scripts": {
"prepare": "npm run build-ts",
"build": "npm run build-ts && npm run lint",
"test:unit": "jest --coverage --verbose",
"test": "npm run build && npm run test:unit",
"build-ts": "del-cli dist/ && tsc",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\""
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"del-cli": "^3.0.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-typescript": "^11.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {}
}