-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
40 lines (40 loc) · 982 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
{
"name": "license-key-gen",
"version": "0.1.4",
"description": "Generates and Validates license",
"author": "Aruna Lakmal <[email protected]> (https://www.webisto.tech)",
"license": "MIT",
"main": "index.js",
"bugs": {
"url": "https://github.com/arunahk/license-key-gen/issues",
"email": "[email protected]"
},
"scripts": {
"test": "./node_modules/.bin/mocha",
"lint": "./node_modules/.bin/eslint lib test"
},
"keywords": [
"node",
"nodejs",
"license",
"licensing",
"license-generator",
"chai",
"mocha"
],
"dependencies": {
"md5": "^2.2.1",
"uid-safe": "^2.1.5"
},
"repository": "github:arunahk/license-key-gen",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-es6": "^1.10.3",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.1.2",
"standard": "^14.3.1"
}
}