forked from satoren/node-pigpio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "npm install lerna && lerna bootstrap && npm install",
"clean": "lerna run clean",
"build": "lerna run build",
"test": "jest",
"lint:eslint": "eslint . --cache --ext ts",
"lint:prettier": "prettier . --check",
"lint": "run-s lint:eslint lint:prettier",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"test-ci": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.7",
"jest": "^26.6.1",
"lerna": "^3.22.1",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"bugs": {
"url": "https://github.com/satoren/node-pigpio/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/satoren/node-pigpio.git"
}
}