-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.6 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@yoonit/utils",
"version": "1.2.2",
"description": "Couple of functions in JS to speed up development and give some help",
"main": "yoo-utils.bundle.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Yoonit-Labs/javascript-yoonit-utils.git"
},
"scripts": {
"dev": "webpack --mode development",
"build": "webpack",
"test:unit": "jest -u",
"test:unit:watch": "jest --runInBand --watch-all",
"test:unit:coverage": "jest --coverage",
"lint": "eslint ./src"
},
"author": {
"name": "Gabriel Moraes, Luigui Delyer & Gabriel Mule @ 2021",
"email": "about@yoonit.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Yoonit-Labs/javascript-yoonit-utils/issues"
},
"homepage": "https://github.com/Yoonit-Labs/javascript-yoonit-utils#readme",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.11.5",
"@babel/eslint-plugin": "^7.11.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.13.10",
"@webpack-cli/init": "^1.1.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.21.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.15",
"standard": "^16.0.3",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0"
}
}