-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.52 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "node-ota-updater",
"version": "1.0.0",
"description": "arduino OTA updater for nodejs apps",
"main": "index.js",
"scripts": {
"start": "nodemon ./src/server.js | ./node_modules/.bin/pino-pretty",
"test": "LOG_LEVEL=error PORT=5002 MOCK=true nyc --reporter=text --reporter=lcov mocha --recursive --exit 'src/**/*.spec.js'",
"test:watch": "LOG_LEVEL=error PORT=5002 MOCK=true nyc --reporter=text --reporter=lcov mocha --recursive --watch 'src/**/*.spec.js'",
"test:build": "LOG_LEVEL=error PORT=5002 MOCK=true nyc --reporter=text --reporter=lcov mocha --recursive --exit 'src/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoekma/node-ota-updater.git"
},
"keywords": [
"node",
"arduino",
"ota"
],
"author": "hoekma",
"license": "MIT",
"bugs": {
"url": "https://github.com/hoekma/node-ota-updater/issues"
},
"homepage": "https://github.com/hoekma/node-ota-updater#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"email-validator": "^2.0.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"express": "^4.17.1",
"express-pino-logger": "^6.0.0",
"http-status-codes": "^2.1.4",
"pino": "^6.11.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"assert": "^2.0.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.1.0",
"faker": "^5.5.3",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"mocha": "^7.1.0",
"nyc": "^14.1.1",
"pino-pretty": "^5.0.2",
"prettier": "^1.19.1",
"sinon": "^9.0.1",
"supertest": "^6.0.1"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js",
"**/*.mock.js",
"**/config.js",
"**/testConfig.js",
"**/index.js",
"src/demo/**",
"src/server.js"
]
},
"lint-staged": {
"./src/**/*.{js,ts}": [
"npm run test:build",
"eslint src"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}