forked from autoNumeric/autoNumeric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
173 lines (173 loc) · 5.65 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "@brokertech/autonumeric",
"version": "4.6.1",
"description": "autoNumeric is a standalone Javascript library that provides live *as-you-type* formatting for international numbers and currencies. It supports most international numeric formats and currencies including those used in Europe, Asia, and North and South America.",
"main": "dist/autoNumeric.js",
"browser": "dist/autoNumeric.min.js",
"module": "src/main.js",
"readmeFilename": "README.md",
"keywords": [
"currency",
"money",
"monetary",
"Euro",
"Dollar",
"Pound",
"number",
"numeric",
"format",
"form",
"input",
"mask",
"as-you-type",
"live"
],
"license": "MIT",
"author": {
"name": "Robert Knothe",
"email": "[email protected]"
},
"contributors": [
{
"name": "Alexandre Bonneau",
"email": "[email protected]"
},
{
"name": "Sokolov Yura"
},
{
"name": "Carlos Gonzales"
},
{
"name": "Ney Estrabelli"
},
{
"name": "Carlos Ghan"
},
{
"name": "Boris Cherny"
},
{
"name": "Maxwell Barvian"
},
{
"name": "Sasha Koss"
},
{
"name": "Mic Biert"
},
{
"name": "Peter Boccia"
},
{
"name": "Bruno Batista"
},
{
"name": "Jarin Udom"
},
{
"name": "Raymond Lehnhoff"
},
{
"name": "Cory Foy"
}
],
"homepage": "https://github.com/autoNumeric/autoNumeric/",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"@wdio/cli": "^5.12.5",
"@wdio/jasmine-framework": "^5.12.1",
"@wdio/local-runner": "^5.12.5",
"@wdio/selenium-standalone-service": "^5.12.1",
"@wdio/spec-reporter": "^5.12.1",
"@wdio/static-server-service": "^5.12.1",
"@wdio/sync": "^5.12.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.5",
"compression-webpack-plugin": "^3.0.0",
"coveralls": "^3.0.6",
"es-check": "^5.0.0",
"eslint": "^6.3.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.0",
"imports-loader": "^0.8.0",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^4.0.2",
"loader-utils": "^1.1.0",
"phantomjs-prebuilt": "^2.1.16",
"rimraf": "^3.0.0",
"uglify-js": "^3.5.4",
"uglifyjs-webpack-plugin": "^2.0.1",
"webdriverio": "^5.7.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.1.2"
},
"scripts": {
"authors": "sh tools/authors.sh",
"postinstall": "node yarnfix.js",
"build:dev": "webpack --config config/webpack.config.dev.js",
"build:prd": "webpack --config config/webpack.config.prd.js",
"build": "yarn clean:build && yarn build:dev && yarn build:prd && yarn es-check",
"clean:build": "rimraf dist",
"clean:coverage": "rimraf test/unit/coverage",
"clean:e2e": "rimraf test/e2e/reports/* && rimraf test/e2e/screenshots/*",
"clean:log": "rimraf npm-debug.log selenium-debug.log test/e2e/selenium.log yarn-error.log",
"clean": "yarn clean:build && yarn clean:coverage && yarn clean:log && yarn clean:e2e",
"lint": "eslint --ext .js src test/unit test/e2e",
"lintfix": "eslint --fix --ext .js src test/unit test/e2e",
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "karma start test/unit/karma.conf.js --single-run",
"test:unitprogress": "karma start test/unit/karma.conf.js --single-run --reporters 'progress'",
"test:unitp": "karma start test/unit/karma.conf.js --single-run --browsers PhantomJS",
"test:unitf": "karma start test/unit/karma.conf.js --single-run --browsers Firefox",
"test:unitc": "karma start test/unit/karma.conf.js --single-run --browsers Chrome",
"test:unitpp": "karma start test/unit/karma.conf.js --single-run --browsers PhantomJS --reporters 'progress'",
"test:unitfp": "karma start test/unit/karma.conf.js --single-run --browsers Firefox --reporters 'progress'",
"test:unitfhp": "karma start test/unit/karma.conf.js --single-run --browsers FirefoxDeveloperHeadless --reporters 'progress'",
"test:unitcp": "karma start test/unit/karma.conf.js --single-run --browsers Chrome --reporters 'progress'",
"test:unitchp": "karma start test/unit/karma.conf.js --single-run --browsers ChromeHeadless --reporters 'progress'",
"test:unitheadless": "karma start test/unit/karma.conf.js --single-run --browsers FirefoxDeveloperHeadless,ChromeHeadless --reporters 'progress'",
"test:e2e": "wdio test/e2e/wdio.local.conf.js",
"travis:test": "yarn test:unitheadless",
"travis:lint": "yarn lint",
"es-check": "es-check es5 dist/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autoNumeric/autoNumeric.git"
},
"bugs": {
"url": "https://github.com/autoNumeric/autoNumeric/issues"
},
"autoupdate": {
"source": "git",
"target": "git://github.com/autoNumeric/autoNumeric.git",
"basePath": "",
"files": [
"src/AutoNumeric.js",
"src/AutoNumericDefaultSettings.js",
"src/AutoNumericEnum.js",
"src/AutoNumericEvents.js",
"src/AutoNumericHelper.js",
"src/AutoNumericOptions.js",
"src/AutoNumericPredefinedOptions.js",
"src/main.js"
]
}
}