forked from jsillitoe/react-currency-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.27 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
{
"name": "react-currency-input",
"version": "1.3.7",
"description": "React component for inputing currency amounts",
"main": "lib/react-currency-input.cjs.js",
"jsnext:main": "lib/react-currency-input.es.js",
"module": "lib/react-currency-input.es.js",
"scripts": {
"lint": "eslint src/**",
"build:umd": "cross-env NODE_ENV=umd rollup -c",
"build:cjs": "cross-env NODE_ENV=cjs rollup -c",
"build:es": "cross-env NODE_ENV=es rollup -c",
"build": "rimraf lib && npm run build:umd && npm run build:cjs && npm run build:es",
"prepublish": "npm run build",
"build-example": "browserify examples/index.js -o examples/bundle.js -t [ babelify --presets [ es2015 react ] ]",
"test": "mocha --compilers js:babel-register",
"webpack": "webpack",
"webpack-dev": "webpack-dev-server"
},
"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": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "6.4.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-3": "6.22.0",
"babel-register": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"cross-env": "^5.1.0",
"eslint": "^2.13.1",
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"rollup": "^0.50.0",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-peer-deps-external": "^1.0.0",
"rollup-plugin-uglify": "^2.0.1",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1"
},
"dependencies": {
"jsdom": "^9.12.0",
"prop-types": "^15.6.0",
"react": "^16.4.1",
"react-dom": "^16.4.1"
}
}