-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 959 Bytes
/
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
{
"name": "@johntalton/mcp300X",
"version": "2.0.0",
"description": "",
"type": "module",
"main": "src/mcp300X.js",
"scripts": {
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git@github.com:johntalton/mcp300X.git"
},
"author": "johntalton@gmail.com",
"license": "MIT",
"dependencies": {
},
"devDependencies": {
"eslint": "^8.0.0",
"mqtt": "^5.5.0",
"@johntalton/eslint-config": "github:johntalton/eslint-config"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"@johntalton/eslint-config/es"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"env": {
"es6": true
},
"ignorePatterns": [
"test/**",
"examples/**/*"
],
"rules": {
"no-magic-numbers": "off",
"semi": "warn",
"max-len": [
"error",
{
"code": 120
}
]
}
}
}