-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
49 lines (49 loc) · 1.25 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": "currencyformatter.js",
"version": "2.2.0",
"description": "A super simple currency formatting library by OSREC Technologies https://osrec.co.uk",
"main": "dist/currencyFormatter.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "babel currencyFormatter.js -d dist && npm run uglify",
"uglify": "uglifyjs dist/currencyFormatter.js --compress --mangle --output dist/currencyFormatter.min.js && cp dist/currencyFormatter.min.js docs/currencyFormatter.min.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osrec/currencyFormatter.js.git"
},
"keywords": [
"currency",
"javascript",
"money",
"formatting",
"decimal"
],
"author": "OSREC <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/osrec/currencyFormatter.js/issues"
},
"homepage": "https://github.com/osrec/currencyFormatter.js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"uglify-js": "^3.3.7"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"uglify": true
}
}
]
]
},
"dependencies": {}
}