-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 KB
/
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
44
45
46
47
48
49
{
"name": "unifile-common-tools",
"version": "1.0.4",
"description": "Common tools for Unifile connectors. Don't require it directly",
"main": "lib/tools.js",
"author": "Jean-Baptiste Richardet <[email protected]> (https://github.com/JbIPS)",
"license": "MIT",
"scripts": {
"release": "",
"test": "mocha test/*.js",
"build": "echo NO BUILD STEP",
"watch": "mocha test/*.js -R min --watch",
"lint": "eslint test/*.js lib/*.js",
"cover": "nyc --reporter=lcov --check-coverage --branches 100 npm test",
"cover:export": "cat ./coverage/lcov.info | codacy-coverage",
"gen:docs": "jsdoc -R README.md -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/silexlabs/unifile-common-tools.git"
},
"engines": {
"node": ">10.0.0",
"npm": ">3.9.5"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"lib"
],
"bugs": {
"url": "https://github.com/silexlabs/unifile-common-tools/issues"
},
"homepage": "https://github.com/silexlabs/unifile-common-tools",
"keywords": [
"unifile"
],
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0"
},
"dependencies": {
"bluebird": "^3.7.2"
}
}