forked from plotly/dash-html-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.34 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
{
"name": "dash-html-components",
"version": "1.0.2",
"description": "Vanilla HTML components for Dash",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/plotly/dash-html-components.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/plotly/dash-html-components/issues"
},
"homepage": "https://github.com/plotly/dash-html-components",
"scripts": {
"clean": "rm -rf src/* && mkdir -p src/components",
"prebuild": "cd scripts && sh generate-all.sh && cd -",
"install-local": "python setup.py install",
"uninstall-local": "pip uninstall dash-html-components -y",
"lint": "eslint src scripts",
"build:js": "webpack --mode production",
"build:py_and_r": "dash-generate-components ./src/components dash_html_components -p package-info.json && cp dash_html_components_base/** dash_html_components && dash-generate-components ./src/components dash_html_components -p package-info.json --r-prefix 'html'",
"build": "npm run build:js && npm run build:py_and_r",
"postbuild": "es-check es5 dash_html_components/*.js",
"build:watch": "watch 'npm run build' src",
"test:import": "python -m unittest tests.test_dash_import",
"test:py": "python -m unittest tests.test_dash_html_components tests.test_integration",
"test": "run-s -c test:py test:import lint"
},
"author": "Chris Parmer <[email protected]>",
"maintainer": "Ryan Patrick Kyle <[email protected]>",
"dependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"prop-types": "^15.6.0",
"ramda": "^0.26.1",
"react-docgen": "^2.21.0",
"style-loader": "^0.21.0",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2",
"webpack-serve": "^2.0.2"
},
"devDependencies": {
"cheerio": "^0.20.0",
"cross-env": "^5.2.0",
"es-check": "^5.0.0",
"eslint": "^5.3.0",
"npm-run-all": "^4.1.5",
"request": "^2.72.0",
"string": "^3.3.1"
},
"files": [
"/dash_html_components/*{.js,.map}"
],
"peerDependencies": {
"react": "^15.4.0 || ^16.0.0",
"react-dom": "^15.4.0 || ^16.0.0"
}
}