-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 964 Bytes
/
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
{
"name": "data-lovers",
"version": "1.0.0",
"main": "src/index.html",
"license": "MIT",
"scripts": {
"htmlhint": "htmlhint src/*.html test/*.html",
"lint": "npx eslint .",
"pretest": "npm run eslint && npm run htmlhint",
"test": "echo \"Error: no test specified\" && exit 1",
"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",
"@jest/globals": "^29.2.0",
"babel-jest": "^27.0.1",
"chart.js": "^3.9.1",
"gh-pages": "^3.1.0",
"gitignore": "^0.7.0",
"htmlhint": "^1.0.0",
"jest": "^27.0.1",
"opener": "^1.5.1",
"serve": "^14.1.1"
},
"engines": {
"node": ">=14.x"
},
"devDependencies": {
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
}
}