-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.11 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
67
68
69
70
71
72
73
74
75
{
"name": "ezmoney",
"version": "0.0.0-development",
"description": "A library to safely manipulate monetary values",
"keywords": [
"currency",
"ezmoney",
"formatting",
"monetary value",
"money"
],
"homepage": "https://github.com/Spendesk/ezmoney#readme",
"bugs": "https://github.com/Spendesk/ezmoney/issues",
"repository": "github:Spendesk/ezmoney",
"license": "MIT",
"author": "Yacine Hmito <[email protected]>",
"contributors": [
"Yacine Hmito <[email protected]>"
],
"files": [
"index.js",
"index.d.ts",
"index.mjs"
],
"main": "./index.js",
"module": "./index.mjs",
"typings": "./index.d.ts",
"scripts": {
"apicheck": "cd ./scripts; ./compile.ts --apicheck",
"build": "yarn cleanup && yarn compile && yarn rollup",
"cleanup": "cd ./scripts; ./cleanup.sh",
"commitlint": "commitlint",
"compile": "cd ./scripts; ./compile.ts",
"lint": "eslint . --ext=.ts,.tsx",
"release": "semantic-release",
"rollup": "cd ./scripts; ./rollup.ts",
"test": "jest",
"typecheck": "tsc",
"update-tests-data": "cd ./scripts; ./update-tests-data.ts",
"validate": "cd ./scripts; ./validate.sh"
},
"devDependencies": {
"@commitlint/cli": "^13.0.0",
"@commitlint/config-conventional": "^13.0.0",
"@microsoft/api-extractor": "^7.0.23",
"@types/jest": "^26.0.24",
"@types/jsum": "^0.1.0",
"@types/node": "^14.17.9",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"change-case": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-jest": "^24.0.0",
"fast-check": "^2.0.0",
"jest": "^27.0.6",
"jest-diff": "^27.0.6",
"jest-junit": "^12.2.0",
"jsum": "^1.0.0",
"prettier": "^2.0.0",
"rollup": "^2.75.7",
"rollup-plugin-typescript2": "^0.32.1",
"semantic-release": "^17.0.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"resolutions": {
"@microsoft/api-extractor/**/typescript": "^4.7.4"
},
"volta": {
"node": "14.17.4",
"yarn": "1.22.11"
}
}