-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 860 Bytes
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
{
"name": "elo7-format-amd",
"version": "1.1.6",
"license": "BSD-3-Clause",
"description": "A small lib to format string to number and vice versa",
"main": "format.js",
"scripts": {
"lint": "eslint format.js test/formatTest.js",
"build": "terser format.js -o format.min.js --compress drop_console=true --mangle",
"pretest": "npm run lint && npm run build",
"test": "mocha test --recursive --reporter nyan"
},
"keywords": [
"JS",
"Formatter",
"Currency"
],
"repository": {
"type": "git",
"url": "git://github.com/elo7/format-amd"
},
"author": "Elo7",
"bugs": {
"url": "https://github.com/elo7/format-amd/issues"
},
"homepage": "https://github.com/elo7/format-amd",
"devDependencies": {
"define-async": "1.3.2",
"eslint": "7.0.0",
"mocha": "7.1.2",
"terser": "4.6.13"
}
}