-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 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
{
"name": "node-license-server",
"version": "0.0.5",
"description": "license-server implementation for software licensing",
"main": "index.js",
"scripts": {
"lint": "eslint --plugin markdown --ext js,md .",
"start": "node ./index.js",
"test": "mocha --check-leaks --bail --no-exit --reporter spec test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --no-exit --reporter dot test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --no-exit --reporter spec test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devfans/node-license-server.git"
},
"keywords": [
"license",
"server",
"node",
"software",
"licensing",
"permission"
],
"author": "stefanliu@outlook.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/devfans/node-license-server/issues"
},
"devDependencies": {
"after": "0.8.2",
"eslint": "^5.16.0",
"eslint-plugin-markdown": "^1.0.0",
"istanbul": "1.0.0-alpha.2",
"machine-digest": "0.0.3",
"mocha": "^6.1.4",
"node-fetch": "^2.1.2",
"supertest": "^4.0.2"
},
"homepage": "https://github.com/devfans/node-license-server#readme",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.3",
"redis-async-wrapper": "0.0.5",
"winston": "^3.0.0-rc5"
}
}