-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 909 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
{
"name": "@stellar-expert/formatter",
"version": "3.0.0",
"description": "Formatting utils and common formats for numeric, string, timestamp and binary data",
"main": "./lib/formatter.js",
"module": "./src/index.js",
"sideEffects": false,
"exports": {
"import": "./src/index.js",
"require": "./lib/formatter.js"
},
"scripts": {
"build": "webpack --mode=production --config webpack.config.cjs",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stellar-expert/formatter.git"
},
"author": "orbitlens <orbit@stellar.expert>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stellar-expert/formatter/issues"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"babel-loader": "^10.0.0",
"jest": "^30.2.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
}
}