-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
68 lines (68 loc) · 2.47 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
{
"name": "react-numeric-input",
"version": "2.2.3",
"description": "Number input component that can replace the native number input which is not yet very well supported and where it is, it does not have the same appearance across the browsers. Additionally this component offers more flexible options and can be used for any values (differently formatted representations of the internal numeric value).",
"main": "index.js",
"scripts": {
"build-examples": "npm run build-dist && webpack --config ./build_config/examples.js && cp dist/react-numeric-input.js docs/react-numeric-input.js",
"build-dist": "webpack --config ./build_config/dist.js",
"build-dist-min": "webpack --config ./build_config/dist-min.js",
"build": "webpack --config ./build_config/main.js",
"build-all": "npm run build && npm run build-dist-min && npm run build-examples",
"test": "karma start",
"test:e2e": "node ./selenium-download.js && ./node_modules/nightwatch/bin/nightwatch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vlad-ignatov/react-numeric-input.git"
},
"keywords": [
"react",
"input",
"number",
"numeric",
"widget",
"component"
],
"author": "Vladimir Ignatov",
"license": "MIT",
"bugs": {
"url": "https://github.com/vlad-ignatov/react-numeric-input/issues"
},
"homepage": "https://github.com/vlad-ignatov/react-numeric-input#readme",
"devDependencies": {
"babel": "^6.3.26",
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^5.8.35",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.15.0",
"expect": "^1.12.2",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.1",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-opera-launcher": "^0.3.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"nightwatch": "^0.9.16",
"phantomjs": "^1.9.18",
"prop-types": "^15.5.8",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"selenium-download": "^2.0.10",
"webpack": "^1.12.2"
},
"peerDependencies": {
"react": ">=0.14.0 || ^15.6.1 || ^16.0.0"
}
}