-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.06 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
{
"name": "nodejs-babel-skeleton",
"version": "0.0.1",
"description": "Skeleton of a nodejs + babel + mocha + eslint project.",
"main": "index.js",
"scripts": {
"start": "babel-node src/index.js",
"test": "mocha --reporter=mocha-junit-reporter --require @babel/register --recursive --reporter-options mochaFile=tests/test-results.xml tests",
"test:coverage": "nyc --reporter=cobertura mocha --require @babel/register --recursive tests",
"test:watch": "mocha --require @babel/register --recursive --watch tests",
"lint": "eslint src tests *.js .eslintrc.js",
"lint:fix": "eslint --fix src tests *.js .eslintrc.js"
},
"author": "Louis Lambeau <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@enspirit/eslint-config-node": "0.0.6",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"mocha": "^8.2.1",
"mocha-junit-reporter": "^2.0.0",
"nyc": "^15.1.0"
},
"dependencies": {
}
}