forked from jsillitoe/react-currency-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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": "react-currency-input",
"version": "1.0.4",
"description": "React component for inputing currency amounts",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src/**",
"lib": "rimraf lib && npm run babel",
"babel": "babel --out-dir lib src",
"build": "npm run lib",
"prepublish": "npm run build",
"build-example": "browserify example/example.js -o example/bundle.js -t [ babelify --presets [ es2015 react ] ]",
"test": "mocha --compilers js:babel-register "
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsillitoe/react-currency-input.git"
},
"keywords": [
"react",
"es6",
"javascript",
"money",
"currency",
"i18n",
"react-component"
],
"author": "Joe Sillitoe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsillitoe/react-currency-input/issues"
},
"homepage": "https://github.com/jsillitoe/react-currency-input#readme",
"peerDependencies": {
"react": ">=0.14.0 || >=15.0.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"eslint": "^2.13.1",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
}
}