-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
117 lines (117 loc) · 3.04 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": "watson-react-components",
"version": "0.6.16",
"description": "A collection of react components to build web applications using the Watson APIs.",
"main": "./dist/components/index",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/react-components.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "James Zhang",
"email": "[email protected]"
},
{
"name": "German Attanasio Ruiz",
"email": "[email protected]"
},
{
"name": "Nathan Friedly",
"email": "[email protected]",
"url": "http://www.nfriedly.com/"
},
{
"name": "Joshua B. Smith",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/react-components/issues"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
"transform-object-assign"
],
"compact": true
},
"scripts": {
"dev": "node_modules/.bin/gulp serve",
"start": "node_modules/.bin/gulp serve",
"build": "node_modules/.bin/gulp build",
"prepublish": "npm run build",
"gh-pages": "node_modules/.bin/gulp gh-pages",
"lint": "eslint . && dependency-lint",
"autofix": "eslint --fix .",
"validate": "npm ls",
"test": "npm run lint"
},
"browserify-global-shim": {
"react": "React",
"react-dom": "ReactDOM"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.11.0",
"babel-preset-react": "^6.11.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browser-sync": "^2.26.3",
"browserify": "^13.1.0",
"browserify-global-shim": "^1.0.3",
"dependency-lint": "^4.2.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.0.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-babel": "^6.1.3",
"gulp-clean-css": "^2.3.2",
"gulp-gh-pages": "^0.5.4",
"gulp-imagemin": "^3.4.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^3.2.1",
"gulp-sourcemaps": "^2.6.4",
"minifyify": "^7.1.0",
"pre-commit": "^1.2.2",
"react-dom": "^16.6.3",
"uglifyify": "^3.0.2",
"vinyl-source-stream": "^1.1.2"
},
"dependencies": {
"classnames": "^2.2.6",
"map-range": "^0.1.2",
"numeral": "^2.0.4",
"prismjs": "^1.15.0",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dropzone": "^3.13.4",
"react-prism": "^4.3.2",
"react-radio-group": "^3.0.3",
"watson-ui-components": "^0.6.2"
},
"peerDependencies": {
"watson-ui-components": "^0.6.0",
"react": "^0.14.0 || ^15.3.0 || ^16.6.3",
"react-dom": "^0.14.0 || ^15.3.0 || ^16.6.3",
"prismjs": "^1.5.1"
},
"pre-commit": [
"test"
]
}