-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 873 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 873 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
34
35
36
37
38
39
40
{
"name": "@ajaz.org/javascript-lib",
"version": "0.0.1",
"description": "JavaScript Utility Functions",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devaijaz/javascript-lib.git"
},
"keywords": [
"JavaScript",
"Utiliy",
"Functions"
],
"author": "devaijaz",
"license": "Unlicenced",
"bugs": {
"url": "https://github.com/devaijaz/javascript-lib/issues"
},
"homepage": "https://github.com/devaijaz/javascript-lib#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-jest": "^27.4.5",
"jest": "^27.4.5",
"rollup": "^2.61.1",
"rollup-plugin-babel": "^4.4.0"
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
}
}