-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 910 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
32
33
{
"name": "clock",
"version": "1.0.0",
"description": "JS Project",
"main": "clock.js",
"scripts": {
"test": "jest --config ./jest.config.json --watchAll",
"test:coverage": "jest --config ./jest.config.json --coverage || open coverage/lcov-report/index.js",
"clock": "node clock",
"clean": "rm -rf .cache dist"
},
"keywords": [],
"author": "Gustavo Peixoto de Azevedo",
"license": "UNLICENSED",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.1.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5"
},
"browserslist": [
"last 2 Firefox versions",
"last 2 Chrome versions",
"> 2%",
"not ie <= 8"
]
}