-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
33 lines (33 loc) · 862 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
{
"name": "nodejs-license-file",
"description": "A lightweight License file generator and parser for NodeJS.",
"version": "4.0.0",
"license": "MIT",
"author": "Yuriy Bushev <bushevuv@gmail.com>",
"keywords": [
"license",
"file",
"generation",
"parsing",
"validation"
],
"devDependencies": {
"mocha": "4.0.1",
"should": "13.1.3"
},
"scripts": {
"test": "mocha ./test/index.js"
},
"engine": "node >= 4.3.1",
"repository": {
"type": "git",
"url": "git+https://github.com/bushev/nodejs-license-file"
},
"bugs": {
"url": "https://github.com/bushev/nodejs-license-file/issues"
},
"homepage": "https://github.com/bushev/nodejs-license-file",
"dependencies": {
"json-stable-stringify": "1.0.1"
}
}