-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "nodebox",
"version": "1.0.0",
"description": "Node.js Dropbox Client",
"main": "index.js",
"author": "Alexander Hofbauer",
"license": "MIT",
"dependencies": {
"async": "^3.2.2",
"chokidar": "^3.0.2",
"cli-spinner": "^0.2.10",
"dropbox": "^4.0.28",
"fs": "^0.0.1-security",
"lodash": "^4.17.21",
"lowdb": "^1.0.0",
"node-dir": "^0.1.17",
"os": "^0.1.1",
"path": "^0.12.7",
"path-exists": "^4.0.0",
"promptly": "^3.0.3",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"depcheck": "^1.4.7",
"eslint": "^9.15.0",
"jsdoc": "^3.6.11",
"mocha": "^10.8.2",
"nodemon": "^3.1.7",
"nyc": "^17.1.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"standard": "^17.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/derhofbauer/nodebox"
},
"bugs": {
"url": "https://github.com/derhofbauer/nodebox/issues"
},
"scripts": {
"dev": "yarn run init && yarn run nodemon",
"init": "yarn",
"nodemon": "nodemon index.js",
"start": "node index.js",
"inspect": "nodemon --inspect --inspect-brk=0.0.0.0 index.js",
"eslint": "eslint **.js ./**/*.js",
"standard": "standard Class/**.js Class/**/*.js Overrides/**.js Overrides/**/*.js",
"jsdoc": "jsdoc **.js ./**/*.js -r",
"lint": "yarn run eslint && yarn run standard",
"test": "LOG_LEVEL='error' && mocha --recursive --exit",
"test-watch": "LOG_LEVEL='error' && mocha --recursive --exit --watch",
"coverage": "LOG_LEVEL='error' && nyc --reporter=lcov --reporter=text mocha --recursive --exit && yarn run report",
"coverage-html": "LOG_LEVEL='error' && nyc --reporter=html mocha --recursive --exit && yarn run report",
"report": "nyc report",
"attach": "docker exec -it nodebox_node_1 bash"
}
}