forked from githubpartners/workshop-tonkotsu-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 836 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 836 Bytes
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
{
"name": "workshop-tonkotsu-nodejs",
"repository": {"type": "git" , "URL": "git://github.com/sandesh2026/workshop-tonkotsu-nodejs.git"},
"description": "Boilerplate NodeJS webapp codebase",
"version": "0.0.1",
"private": false,
"license": "MIT",
"author": "pierluigi@github.com",
"scripts": {
"start": "node index.js",
"lint": "eslint */**.js",
"test": "nyc mocha",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"dependencies": {
"chalk": "^2.4.2",
"codecov": "^3.5.0",
"mocha": "^5.2.0",
"node-fetch": "^2.6.0",
"nyc": "^13.1.0",
"ora": "^3.4.0",
"server": "^1.0.19"
},
"devDependencies": {
"eslint": "5.5.0",
"prettier": "^1.18.2"
},
"publishConfig": {
"registry":"https://npm.pkg.github.com/@sandesh2026"
}
}