-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "@sealink/money_beans",
"version": "1.8.2",
"description": "Create JS money objects from strings, integers or floats",
"main": "./dist/money.js",
"module": "./dist/money.esm.js",
"scripts": {
"prebuild": "eslint src",
"build": "rollup -c --environment BUILD:production",
"watch": "rollup -c -w",
"pretest": "rollup -c",
"test": "jest",
"coverage": "jest --coverage",
"prepublish": "BUILD=production npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sealink/money_beans.git"
},
"keywords": [
"money",
"cents",
"currency",
"dollars",
"add",
"subtract",
"multiply"
],
"author": "Jack McNicol <jack.mcnicol@sealink.com.au>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sealink/money_beans/issues"
},
"homepage": "https://github.com/sealink/money_beans#readme",
"dependencies": {
"currency.js": "2.0.4"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.18.0",
"jest": "^29",
"rollup": "^4",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-istanbul": "^5.0.0"
},
"engines": {
"node": "^16 || ^18"
}
}