forked from helderfarias/react-materialui-currency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.97 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
{
"name": "react-materialui-currency",
"version": "1.0.0",
"description": "Currency TextField for Material-UI",
"main": "lib/index.js",
"scripts": {
"build": "npm run lint && npm test && babel ./src --ignore *-test.js --out-dir ./lib",
"prebuild": "rimraf lib",
"test": "jest",
"lint": "eslint --ext .js src && echo \"eslint: no lint errors\""
},
"jest": {
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-dom",
"./node_modules/react-addons-test-utils"
],
"verbose": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/helderfarias/react-materialui-currency.git"
},
"keywords": [
"react",
"material-ui",
"material design"
],
"author": "Helder Farias",
"license": "MIT",
"bugs": {
"url": "https://github.com/helderfarias/react-materialui-currency/issues"
},
"homepage": "https://github.com/helderfarias/react-materialui-currency#readme",
"peerDependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7",
"material-ui": "^0.14.4",
"react-tap-event-plugin": "^0.2.2"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.21",
"babel-eslint": "^6.0.0",
"babel-jest": "^10.0.1",
"babel-loader": "^6.2.0",
"babel-plugin-transform-dev-warning": "^0.1.0",
"babel-plugin-transform-react-constant-elements": "^6.3.13",
"babel-plugin-transform-react-inline-elements": "^6.3.13",
"babel-plugin-transform-react-remove-prop-types": "^0.2.2",
"babel-plugin-transform-replace-object-assign": "^0.2.1",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babel-runtime": "^6.3.19",
"eslint": "^2.5.1",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.0.0",
"jest-cli": "^0.10.0",
"react-addons-test-utils": "^0.14.8",
"rimraf": "^2.4.3",
"webpack": "^1.12.14"
}
}