-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "react-dynamic-number",
"version": "1.7.1",
"description": "Highly customizable react component for numbers",
"keywords": [
"react",
"component",
"number",
"format",
"comma",
"dot",
"number separator",
"thousand separator",
"decimal separator"
],
"main": "release/dynamicNumber.js",
"homepage": "https://github.com/uhlryk/react-dynamic-number",
"repository": {
"type": "git",
"url": "https://github.com/uhlryk/react-dynamic-number.git"
},
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js",
"build-example": "./node_modules/webpack/bin/webpack.js --config ./example/webpack.config.js",
"test": "./node_modules/.bin/mocha --compilers js:babel-register tests"
},
"author": "Krzysztof Sztompka <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/uhlryk/react-dynamic-number/issues"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"chai-things": "^0.2.0",
"mocha": "^3.3.0",
"prop-types": "^15.5.8",
"react": ">=0.14.5",
"react-dom": ">=0.14.5",
"webpack": "^2.4.1"
},
"peerDependencies": {
"prop-types": "^15.5.8",
"react": ">=0.14.5",
"react-dom": ">=0.14.5"
}
}