-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "javascript-helpers",
"title": "JavaScript Helpers",
"description": "List of useful JavaScript functions to make development easier",
"version": "2.0.1",
"main": "src/index.js",
"types": "index.d.ts",
"homepage": "https://valeriodipunzio.com/plugins/javascript-helpers/",
"author": {
"email": "[email protected]",
"name": "Valerio Di Punzio",
"url": "https://valeriodipunzio.com"
},
"repository": {
"type": "git",
"url": "https://github.com/SimplySayHi/javascript-helpers.git"
},
"keywords": [
"helpers",
"utils",
"functions"
],
"bugs": {
"url": "https://github.com/SimplySayHi/javascript-helpers/issues"
},
"license": "MIT",
"scripts": {
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-jest": "^24.9.0",
"eslint": "^7.12.1",
"eslint-plugin-jest": "^24.1.0",
"jest": "^24.9.0"
}
}