-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "react-numeral-input",
"version": "0.4.3",
"description": "react numeral input",
"author": "Bingo Yang <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/blackbing/react-numeral-input.git"
},
"homepage": "https://github.com/blackbing/react-numeral-input",
"bugs": {
"url": "https://github.com/blackbing/react-numeral-input/issues"
},
"dependencies": {},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "~5.8.22",
"babel-eslint": "^4.0.10",
"babel-loader": "~5.3.2",
"babel-runtime": "~5.8.20",
"es5-shim": "~4.1.10",
"eslint": "~2.2.0",
"eslint-plugin-react": "^5.1.1",
"expect": "^1.20.2",
"karma": "^0.13.22",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "~0.3.5",
"karma-webpack": "~1.7.0",
"mocha": "^3.1.0",
"numeral": "^1.5.3",
"phantomjs-prebuilt": "^2.1.7",
"react": "^15.2.0",
"react-addons-test-utils": "^15.2.0",
"react-dom": "^15.2.0",
"webpack": "~1.11.0",
"webpack-dev-server": "~1.10.1"
},
"keywords": [
"react",
"react-component",
"react-numeral-input",
"numeral-input"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": "^15.0.0",
"numeral": "^1.5"
},
"scripts": {
"test": "eslint src/ && karma start --single-run",
"watch-test": "karma start --auto-watch --no-single-run",
"example": "webpack --config webpack.example.config.js && open example/index.html",
"build": "webpack",
"start": "webpack-dev-server --inline --hot"
}
}