-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "megapi-node-client",
"version": "2.1.4",
"description": "Unofficial MegaPi Node.js client",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"scripts": {
"build": "./node_modules/.bin/rollup -c",
"start": "npm run build && node .",
"prettier": "prettier --write '**/*.{js,json,md}'",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/pozil/megapi-node-client"
},
"keywords": [
"mega pi",
"raspberry pi",
"arduino",
"mega2560"
],
"dependencies": {
"serialport": "^7.1.5"
},
"engines": {
"node": ">=10.0.0"
},
"author": "pozil",
"license": "MIT",
"readme": "",
"bugs": {
"url": "https://github.com/pozil/megapi-node-client/issues"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"eslint": "^6.6.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"rollup": "^1.26.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{html,js,json,yaml,yml,md}": [
"prettier --write"
],
"**/modules/**/*.js": [
"eslint"
],
"*": [
"git add"
]
}
}