-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.79 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
{
"name": "goodeggs-money",
"version": "2.1.0",
"description": "Reliable money math with BigNumber wrapped inside Cents",
"author": "Good Eggs <[email protected]>",
"contributors": [
"John Rothfels <[email protected]>"
],
"license": "MIT",
"keywords": [
"money math arithmetic bignumber cents"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/goodeggs/goodeggs-money.git"
},
"homepage": "https://github.com/goodeggs/goodeggs-money",
"bugs": "https://github.com/goodeggs/goodeggs-money/issues",
"dependencies": {
"bignumber.js": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@goodeggs/toolkit": "^7.0.1",
"@goodeggs/tsconfig": "^2.0.2",
"@sinonjs/fake-timers": "^10.0.0",
"@types/mocha": "^10.0.0",
"goodeggs-test-helpers": "^8.3.3",
"mocha": "^7.1.0",
"typescript": "^4.8.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"always-auth": true
},
"scripts": {
"prepublishOnly": "yarn run build",
"build": "yarn run clean && yarn run build:es && yarn run build:types",
"build:es": "babel --extensions .ts,.js --source-maps --ignore 'src/*.test.ts' --out-dir dist/ src/",
"test": "yarn run lint && yarn run test:unit",
"test:unit": "mocha --require @babel/polyfill --require .register.ts --extension ts,js,jsx,tsx",
"lint": "yarn run lint:es",
"lint:es": "getk run lint-es",
"lint:fix": "yarn run lint:fix:es",
"lint:fix:es": "getk run fix-es",
"clean": "rm -rf dist",
"build:types": "tsc --project tsconfig.declarations.json"
}
}