-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
133 lines (133 loc) · 4.18 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "easymoney",
"version": "0.0.22",
"author": "Whispers12",
"sideEffects": false,
"private": true,
"source": "src/main/index.ts",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"maintainers": [
{
"name": "Whispers12",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Whispers12/easymoney.git"
},
"bugs": {
"url": "https://github.com/Whispers12/easymoney/issues"
},
"homepage": "https://github.com/Whispers12/easymoney#readme",
"license": "MIT",
"description": "Best way to do money in js",
"scripts": {
"prettier": "prettier --write \"./packages/**/*.{js,jsx,ts,tsx}\"",
"new-version": "lerna version --no-changelog --no-push --no-git-tag-version",
"postinstall": "lerna bootstrap",
"bootstrap": "lerna bootstrap && npm run build",
"build-prod": "lerna run build-prod",
"tsc:build": "tsc --build --dry --clean",
"start": "tsc --build --watch",
"test": "jest --watchAll",
"test-dev": "jest --bail",
"test-tools": "jest --config jest.tools.js --bail",
"test-integration": "jest --config jest.integration.js --bail",
"test-prehook": "jest --bail",
"jest-coverage": "jest --bail --collectCoverage",
"test-coverage": "yarn build-prod && yarn jest-coverage",
"clean": "rimraf packages/*/{tsconfig.tsbuildinfo,lib,dist}",
"deploy": "cd website && now",
"depcruise:archi": " depcruise --include-only '^(src|bin)' --config .dependency-cruiser.js -T archi src | dot -Grankdir=TD -T svg | tee high-level-dependencies.svg | depcruise-wrap-stream-in-html > high-level-dependencies.html"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"workspaces": [
"packages/*"
],
"alias": {
"money": "./packages/money/src/index.ts",
"core": "./packages/core/src/index.ts",
"currencies": "./packages/currencies/src/index.ts",
"formatter": "./packages/formatter/src/index.ts",
"crypto-formatter": "./packages/formatter/src/index.ts",
"bigint-money": "./packages/bigint-money/src/index.ts",
"bignumber.js": "./packages/bignumber.js/src/index.ts"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"package-json": "^6.5.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/config-lerna-scopes": "^8.3.4",
"@rollup/plugin-alias": "^3.0.0",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^4.0.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^1.13.0",
"babel-jest": "^24.8.0",
"codecov": "^3.6.5",
"cross-env": "^5.2.1",
"dependency-cruiser": "^8.1.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"fast-check": "^1.24.1",
"husky": "^3.1.0",
"jest": "^25.3.0",
"lerna": "^3.20.2",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^2.3.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-gzip": "^2.2.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"rollup-plugin-visualizer": "^4.0.3",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=10.8.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"files": [
"/README.md",
"/package.json",
"/src",
"/dist"
],
"keywords": [
"easymoney",
"money",
"dinero",
"dinero.js",
"amount",
"immutable",
"monetary"
],
"dependencies": {}
}