forked from Laboratoria/BOG003-data-lovers
-
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) · 787 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 787 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": "data-lovers",
"version": "1.0.0",
"main": "src/index.html",
"license": "MIT",
"jest": {
"globals": {
"google": {}
}
},
"scripts": {
"htmlhint": "htmlhint src/*.html test/*.html",
"eslint": "eslint --ext .js src/ test/",
"pretest": "npm run eslint && npm run htmlhint",
"test": "jest --verbose --coverage",
"open-coverage-report": "opener ./coverage/lcov-report/index.html",
"start": "serve src/",
"deploy": "gh-pages -d src"
},
"dependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"babel-jest": "^27.0.1",
"eslint": "^7.12.1",
"gh-pages": "^3.1.0",
"htmlhint": "^0.14.1",
"jest": "^27.0.1",
"opener": "^1.5.1",
"serve": "^12.0.0"
}
}