forked from Richienb/synergy-serial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 941 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
{
"name": "synergy-serial",
"version": "1.1.0",
"description": "Generate a Synergy serial code.",
"repository": "https://github.com/Richienb/synergy-serial.git",
"author": "Richie Bendall <[email protected]>",
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "xo",
"test": "yarn lint && ava"
},
"keywords": [
"synergy",
"serial",
"code",
"generate",
"open-source"
],
"dependencies": {
"buffer-from": "^1.1.1",
"chance": "^1.1.4",
"ow": "^0.15.0"
},
"devDependencies": {
"ava": "^2.4.0",
"eslint-config-richienb": "^0.2.3",
"xo": "^0.25.3"
},
"resolutions": {
"eslint": "^6.8.0"
},
"xo": {
"extends": "richienb/node"
}
}