forked from BenjaminVanRyseghem/numbro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.67 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "numbro",
"version": "2.3.6",
"description": "Format and manipulate numbers.",
"homepage": "http://numbrojs.com",
"author": {
"name": "Benjamin Van Ryseghem",
"email": "benjamin@vanryseghem.com",
"url": "https://benjamin.vanryseghem.com"
},
"keywords": [
"numeral",
"numbro",
"number",
"format",
"time",
"money",
"percentage"
],
"main": "./dist/numbro.min.js",
"typings": "./numbro.d.ts",
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/BenjaminVanRyseghem/numbro"
},
"bugs": {
"url": "https://github.com/BenjaminVanRyseghem/numbro/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/compat-data": "^7.9.0",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"all-contributors-cli": "^6.18.0",
"auto-load": "^3.0.4",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"del": "^3.0.0",
"electron": "^13.1.8",
"eslint": "^5.16.0",
"eslint-plugin-jasmine": "^2.10.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-bump": "^3.1.3",
"gulp-concat": "^2.6.1",
"gulp-confirm": "^1.0.8",
"gulp-eslint": "^6.0.0",
"gulp-foreach": "^0.1.0",
"gulp-git": "^2.9.0",
"gulp-istanbul": "^1.1.3",
"gulp-jasmine": "^4.0.0",
"gulp-load-plugins": "^1.6.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"handlebars": "^4.7.7",
"istanbul": "^0.4.5",
"jasmine": "^3.5.0",
"jasmine-core": "^2.8.0",
"jasmine-reporters": "^2.3.2",
"js-yaml": "^3.13.1",
"karma": "^6.3.4",
"karma-electron": "^6.3.0",
"karma-jasmine": "^1.1.0",
"karma-requirejs": "^1.1.0",
"lodash.template": "^4.5.0",
"minimatch": "^3.0.4",
"requirejs": "^2.3.6",
"rewire": "^2.5.2",
"uglify-js": "^3.6.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"prepublishOnly": "echo \"Are you sure you want to publish a new release with version ${npm_package_version}? (y/n)?\" && read choice && case \"$choice\" in y|Y ) gulp build;; * ) echo \"Abort!\" && exit 1;; esac",
"postpublish": "git tag -as ${npm_package_version} -m \"Release version ${npm_package_version}\" && git push && git push --tags",
"preversion": "echo \"Use `gulp bump` instead\" && exit 1",
"lint": "gulp lint",
"test": "gulp test",
"coverage": "istanbul cover ./node_modules/.bin/jasmine --captureExceptions"
},
"files": [
"LICENSE",
"LICENSE-Numeraljs",
"CHANGELOG",
"CHANGELOG-Numeraljs.md",
"numbro.d.ts",
"languages",
"dist"
],
"dependencies": {
"bignumber.js": "^8.1.1"
}
}