forked from BenjaminVanRyseghem/numbro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.5 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
{
"name": "numbro",
"version": "2.0.5",
"description": "Format and manipulate numbers.",
"homepage": "http://numbrojs.com",
"author": {
"name": "Benjamin Van Ryseghem",
"email": "[email protected]",
"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": {
"auto-load": "^3.0.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"del": "^3.0.0",
"electron": "^1.7.6",
"eslint": "^4.7.0",
"eslint-plugin-jasmine": "^2.8.4",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-bump": "^2.7.0",
"gulp-concat": "^2.6.0",
"gulp-confirm": "^1.0.6",
"gulp-eslint": "^4.0.0",
"gulp-foreach": "^0.1.0",
"gulp-git": "^2.4.2",
"gulp-istanbul": "^1.1.2",
"gulp-jasmine": "^2.4.2",
"gulp-load-plugins": "^1.5.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"jasmine-core": "^2.8.0",
"jasmine-reporters": "^2.2.1",
"karma": "^1.7.1",
"karma-electron": "^5.2.1",
"karma-jasmine": "^1.1.0",
"karma-requirejs": "^1.1.0",
"minimatch": "^3.0.4",
"requirejs": "^2.1.0",
"rewire": "^2.5.2",
"uglify-js": "^2.8.29",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"prepare": "gulp build",
"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 ) exit 0;; * ) 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",
"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": "^4.0.4"
}
}