-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "legoino-util",
"version": "2.0.4",
"description": "Create and parse compact logs.",
"main": "./src/index.js",
"files": [
"src"
],
"scripts": {
"build": "cheminfo-build --entry src/index.js --root legoinoUtil",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage",
"test-only": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Hackuarium/legoino-util.git"
},
"keywords": [
"arduino",
"parser",
"logs"
],
"author": "Luc Patiny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hackuarium/legoino-util/issues"
},
"homepage": "https://github.com/Hackuarium/legoino-util#readme",
"eslintConfig": {
"extends": "cheminfo-react",
"parser": "babel-eslint",
"rules": {
"import/no-unresolved": "off"
}
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^28.1.0",
"cheminfo-build": "^1.1.11",
"cheminfo-tools": "^1.23.3",
"eslint": "^8.2.0",
"eslint-config-cheminfo": "^5.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1"
},
"dependencies": {
"debug": "^4.3.2",
"legoino-device-information": "^2.2.2"
}
}