-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "server-side-tools",
"version": "0.0.1",
"description": "a set of common tools for node, which are pretty trivial to bring into a new repo.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"cover": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov",
"test": "node_modules/.bin/mocha tests/. --recursive",
"lint": "node_modules/.bin/eslint --format codeframe './lib/**/*.js'",
"lint-fix": "node_modules/.bin/eslint --fix --format codeframe './lib/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeauBouchard/server-side-tools.git"
},
"author": "Beau Bouchard",
"license": "ISC",
"bugs": {
"url": "https://github.com/BeauBouchard/server-side-tools/issues"
},
"homepage": "https://github.com/BeauBouchard/server-side-tools#readme",
"dependencies": {
"winston": "3.2.1"
},
"devDependencies": {
"chai": "4.2.0",
"codecov": "3.6.1",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "4.0.0",
"mocha": "7.1.2",
"nyc": "15.0.0",
"sinon": "8.0.4",
"sinon-chai": "3.4.0"
}
}