-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "@fullhex/utils-js",
"version": "0.0.4",
"description": "Common Javascript utilities used across Full Hex projects.",
"type": "module",
"source": "src/index.js",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fullhexventures/utils-js.git"
},
"author": "Chris Dalke",
"license": "MIT",
"bugs": {
"url": "https://github.com/fullhexventures/utils-js/issues"
},
"homepage": "https://github.com/fullhexventures/utils-js",
"dependencies": {
"axios": "^0.24.0",
"http-status": "^1.7.4",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.43",
"querystring": "^0.2.1",
"utm": "^1.1.1",
"uuid": "^8.3.2",
"validator": "^13.6.0"
},
"devDependencies": {
"microbundle": "^0.15.1"
}
}