forked from bcherny/format-as-currency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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": "format-as-currency",
"version": "3.0.0",
"description": "Angular directive to format an input as a currency as the user types",
"main": "dist/format-as-currency.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "karma start; karma run; gulp coveralls",
"pretest": "bower install && npm install",
"prepublish": "npm run build-browserify",
"build-browserify": "browserify -s formatAsCurrency -u angular -t browserify-shim ./src/format-as-currency.js > ./dist/format-as-currency.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bcherny/format-as-currency.git"
},
"keywords": [
"angular",
"currency",
"dollar",
"euro",
"input",
"text",
"autocomplete",
"typeahead",
"format",
"automatic",
"auto",
"nice",
"pretty"
],
"author": "Boris Cherny <[email protected]> (http://performancejs.com/)",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/bcherny/format-as-currency/issues"
},
"homepage": "https://github.com/bcherny/format-as-currency",
"devDependencies": {
"bower": "^1.5.3",
"browserify-shim": "^3.8.12",
"gulp": "^3.9.0",
"gulp-coveralls": "^0.1.4",
"jasmine-core": "^2.3.4",
"karma": "^0.13.10",
"karma-chrome-launcher": "^0.2.1",
"karma-coverage": "^0.5.2",
"karma-jasmine": "^0.3.6"
},
"browserify-shim": {
"angular": "global:angular"
}
}