-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
51
52
53
54
55
56
{
"name": "utilies",
"version": "1.32.0",
"description": "JavaScript utilities helpers to enhance super faster developer experience, productivity, and optimized performance. Compatible with both browsers and limited NodeJS support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "jest",
"build": "tsc",
"rm": "rm -rf ./dist",
"upload": "tsc && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appsaeed/utilies.git"
},
"keywords": [
"utilies",
"utilities",
"javascript utilities",
"utils",
"appsaeed",
"javascript theme",
"js themeing"
],
"author": "appsaeed",
"license": "MIT",
"bugs": {
"url": "https://github.com/appsaeed/utilies.git/issues"
},
"homepage": "https://github.com/appsaeed/utilies.git#readme",
"files": [
"dist/"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js",
"require": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js",
"default": "./dist/*.js",
"require": "./dist/*.js"
}
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2"
}
}