-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
92 lines (92 loc) · 3.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
{
"name": "@trendmicro/react-dropdown",
"version": "1.4.0",
"description": "React Dropdown component",
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"prepublish": "npm run eslint && npm test && npm run clean && npm run bowersync && npm run build && npm run build-examples",
"bowersync": "./scripts/bowersync",
"build": "webpack && npm run cleancss",
"build-examples": "cd examples; webpack",
"clean": "rm -f {lib,dist}/*",
"cleancss": "cleancss -o dist/react-dropdown.min.css dist/react-dropdown.css",
"demo": "http-server -p 8000 docs/",
"eslint": "eslint --ext .js --ext .jsx examples src test",
"test": "tap test/*.js --node-arg=--require --node-arg=babel-register --node-arg=--require --node-arg=babel-polyfill",
"coveralls": "tap test/*.js --coverage --coverage-report=text-lcov --nyc-arg=--require --nyc-arg=babel-register --nyc-arg=--require --nyc-arg=babel-polyfill | coveralls",
"dev": "cd examples; webpack-dev-server --hot --inline --host 0.0.0.0 --port 8000 --content-base ../docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trendmicro-frontend/react-dropdown.git"
},
"author": "Cheton Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/trendmicro-frontend/react-dropdown/issues"
},
"homepage": "https://github.com/trendmicro-frontend/react-dropdown",
"keywords": [
"dropdown",
"react",
"react-dropdown"
],
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"dependencies": {
"@trendmicro/react-buttons": "^1.3.0",
"chained-function": "^0.5.0",
"classnames": "^2.2.5",
"dom-helpers": "^3.3.1",
"prop-types": "^15.6.0",
"uncontrollable": "^7.0.0",
"warning": "^3.0.0"
},
"devDependencies": {
"@trendmicro/react-anchor": "^0.5.6",
"babel-cli": "~6.26.0",
"babel-core": "~6.26.0",
"babel-eslint": "~8.2.1",
"babel-loader": "~7.1.2",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-preset-es2015": "~6.24.1",
"babel-preset-react": "~6.24.1",
"babel-preset-stage-0": "~6.24.1",
"clean-css": "~4.1.9",
"clean-css-cli": "~4.1.10",
"coveralls": "~3.0.0",
"css-loader": "~0.28.9",
"enzyme": "~3.11.0",
"enzyme-adapter-react-16": "~1.15.2",
"eslint": "~4.19.1",
"eslint-config-trendmicro": "~1.3.0",
"eslint-loader": "~1.9.0",
"eslint-plugin-import": "~2.8.0",
"eslint-plugin-jsx-a11y": "~6.0.3",
"eslint-plugin-react": "~7.6.1",
"extract-text-webpack-plugin": "~3.0.2",
"file-loader": "~1.1.6",
"find-imports": "~0.5.2",
"html-webpack-plugin": "~2.30.1",
"http-server": "~0.11.1",
"jsdom": "~11.6.2",
"nib": "~1.1.2",
"react": "~16.3.0",
"react-dom": "~16.3.0",
"style-loader": "~0.20.1",
"stylint": "~1.5.9",
"stylint-loader": "~1.0.0",
"stylus-loader": "~3.0.1",
"tap": "~11.1.0",
"trendmicro-ui": "~0.5.1",
"url-loader": "~0.6.2",
"webpack": "~3.10.0",
"webpack-dev-server": "~2.11.1"
}
}