-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
117 lines (117 loc) · 4.02 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "react-inputs-validation",
"version": "4.9.10",
"description": "A react component for form inputs validation.",
"main": "index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/edwardfxiao/react-inputs-validation.git"
},
"keywords": [
"react",
"input",
"inputs",
"validate",
"validation",
"form",
"textbox",
"select",
"checkbox",
"radio",
"textarea"
],
"author": "Edward Xiao",
"license": "MIT",
"bugs": {
"url": "https://github.com/edwardfxiao/react-inputs-validation/issues"
},
"homepage": "https://edwardfxiao.github.io/react-inputs-validation",
"scripts": {
"test": "NODE_ENV=test jest",
"test:coverage": "npm run tslint && npm run jslint && npm test -- --coverage",
"test_single": "node_modules/.bin/jest Select.js --coverage",
"prepublish": "npm run test:coverage",
"jslint": "eslint ./src",
"tslint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"babel": "BABEL_ENV=lib babel ./src/js/Inputs --out-dir ./lib/components --extensions '.ts,.tsx'",
"build_gh_page": "rm -rf lib && npm run babel && rm -rf dist && NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack/production.config.js --progress -p",
"umd_local": "./node_modules/.bin/webpack --config ./webpack/umd.local.config.js",
"umd_global": "./node_modules/.bin/webpack --config ./webpack/umd.global.config.js",
"umd_global_min": "./node_modules/.bin/webpack --config ./webpack/umd.global.config.js --env minify",
"dev": "node_modules/.bin/webpack-dev-server --config ./webpack/development.config.js",
"compile": "rimraf dist lib && npm run umd_global && npm run umd_global_min && npm run umd_local && rm ./lib/components/*.css"
},
"peerDependencies": {
"react": ">= 16.8.6",
"react-dom": ">= 16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@testing-library/react": "^9.3.2",
"@types/jest": "^23.3.5",
"@types/prismjs": "^1.26.0",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-css-modules-transform": "^1.6.1",
"babel-plugin-rewire": "^1.2.0",
"babel-polyfill": "^6.7.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.16.0",
"chai": "^4.2.0",
"core-js": "^2.5.7",
"coveralls": "^3.0.2",
"css-loader": "^1.0.0",
"cssnano": "^4.1.4",
"empty-module": "^0.0.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.7.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^4.0.0-alpha.2",
"identity-obj-proxy": "^3.0.0",
"inline-style-prefix-all": "^2.0.2",
"jest": "^24.8.0",
"jest-mock-console": "^1.0.0",
"mini-css-extract-plugin": "^0.4.4",
"object-assign": "^4.1.1",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"prismjs": "^1.6.0",
"raf": "^3.4.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-markdown": "^4.0.3",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.6.0",
"stylelint-config-standard": "^18.2.0",
"ts-jest": "^24.0.2",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.1.3",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^1.1.2",
"webpack": "^4.19.1",
"webpack-assets-manifest": "^3.1.0",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.4"
}
}