This repository has been archived by the owner on Feb 17, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.78 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
57
58
59
60
61
62
63
64
65
66
{
"name": "pretty-money",
"version": "1.1.2",
"description": "A tiny currency formatting library for JavaScript",
"license": "MIT",
"keywords": [
"money",
"currency",
"format"
],
"homepage": "https://os.kytta.dev/pretty-money",
"repository": {
"type": "git",
"url": "git+https://github.com/kytta/pretty-money.git"
},
"bugs": {
"url": "https://github.com/kytta/pretty-money/issues"
},
"author": {
"name": "Nikita Karamov",
"email": "[email protected]",
"url": "https://www.kytta.dev/"
},
"source": "./src/pretty-money.js",
"main": "./dist/pretty-money.js",
"exports": "./dist/pretty-money.modern.js",
"module": "./dist/pretty-money.esm.js",
"unpkg": "./dist/pretty-money.umd.js",
"types": "./dist/pretty-money.d.ts",
"type": "module",
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "run-p build:*",
"build:node": "microbundle --name prettyMoney --target node --format es,cjs",
"build:web": "microbundle --name prettyMoney --format modern,umd",
"dev": "microbundle watch --name prettyMoney --target node --format es,cjs",
"pretest": "run-s build",
"test": "run-p --aggregate-output test:*",
"test:lint": "eslint-ci --ext .js src/",
"test:size": "size-limit",
"test:unit": "c8 --include=src pnpm run uvu && c8 report --reporter=lcov",
"uvu": "uvu $UVU_SETTINGS test/"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"c8": "^7.11.0",
"eslint": "^7.32.0",
"eslint-ci": "^1.0.0",
"esm": "^3.2.25",
"microbundle": "^0.14.2",
"npm-run-all": "^4.1.5",
"size-limit": "^7.0.8",
"uvu": "^0.5.3"
},
"size-limit": [
{
"path": "./dist/pretty-money.esm.js",
"limit": "1 KB"
}
]
}