-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "txregions",
"version": "1.1.0",
"description": "A React text input component with invalid character highlighting and URL, email, and number presets.",
"files": [
"*.md",
"docs",
"es6",
"lib",
"npm-scripts",
"umd"
],
"main": "lib/index",
"jsnext:main": "es6/index",
"homepage": "https://github.com/tiffon/txregions",
"bugs": "https://github.com/tiffon/txregions/issues",
"scripts": {
"build": "npm run build-cjs && npm run build-es6",
"build-cjs": "rimraf lib && babel ./src -d lib --ignore '__tests__'",
"build-es6": "rimraf es6 && babel ./src -d es6 --blacklist=es6.modules --ignore '__tests__'",
"build-umd": "NODE_ENV=production webpack src/index.js umd/TxRegions.js",
"build-min": "NODE_ENV=production webpack -p src/index.js umd/TxRegions.min.js",
"lint": "eslint src demo",
"start": "cd demo && node server.js && cd -"
},
"authors": [
"Joe Farro"
],
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"invariant": "^2.0.0",
"prop-types": "^15.6.1",
"warning": "^2.0.0"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.23",
"babel-loader": "^5.0.0",
"babel-plugin-dev-expression": "^0.1.0",
"bundle-loader": "^0.5.2",
"css-loader": "^0.19.0",
"eslint": "^1.7.3",
"eslint-config-rackt": "^1.1.0",
"eslint-plugin-react": "^3.6.3",
"express": "^4.13.3",
"express-urlrewrite": "^1.2.0",
"gzip-size": "^3.0.0",
"isparta-loader": "^1.0.0",
"pretty-bytes": "^2.0.1",
"rimraf": "^2.4.3",
"style-loader": "^0.12.4",
"webpack": "^1.4.13",
"webpack-dev-middleware": "^1.2.0"
},
"tags": [
"react",
"component"
],
"keywords": [
"react",
"react-component",
"input",
"highlight"
]
}