-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "moneysafe",
"version": "2.2.4",
"description": "Convenient, safe money calculations in JS",
"main": "src/index.js",
"scripts": {
"lint": "eslint --fix src && echo 'Lint complete.'",
"test": "node -r esm src/index.test.js | tap-nirvana",
"debug-test": "node --inspect-brk -r esm src/index.test.js",
"watch": "watch 'clear && npm run -s lint && npm run -s test' src",
"verify": "npm run -s test && npm run -s lint",
"precommit": "npm run verify",
"update": "updtr",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericelliott/moneysafe.git"
},
"keywords": [
"money",
"finance",
"shopping",
"currency",
"dollars",
"cents"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericelliott/moneysafe/issues"
},
"homepage": "https://github.com/ericelliott/moneysafe#readme",
"devDependencies": {
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"esm": "3.2.25",
"prettier": "^3.3.3",
"release-it": "^17.7.0",
"riteway": "^7.1.0",
"tap-nirvana": "1.1.0",
"updtr": "^4.1.0",
"watch": "1.0.2"
},
"dependencies": {
"bignumber.js": "9.1.2"
}
}