-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.43 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
{
"name": "plotly-example",
"version": "0.0.1",
"description": "Dash UI component suite",
"main": "lib/index.js",
"scripts": {
"copy-lib": "copyfiles -u 1 lib/* plotly_example",
"demo": "builder run demo",
"install-local": "npm run copy-lib && python setup.py install",
"prepublish": "npm test && builder run build-dist && npm run copy-lib",
"publish-all": "npm publish && python setup.py sdist upload",
"publish-pypi": "npm run prepublish && python setup.py sdist upload",
"start": "builder run build-dev",
"test": "builder run check",
"test-frontend": "karma start node_modules/dash-components-archetype/config/karma/karma.conf.js",
"test-frontend-cov": "karma start node_modules/dash-components-archetype/config/karma/karma.conf.coverage.js",
"test-watch": "builder run test-frontend-watch",
"test-debug": "builder run test-frontend-debug",
"uninstall-local": "pip uninstall plotly-example -y"
},
"dependencies": {
"builder": "3.2.2",
"classnames": "^2.2.5",
"copyfiles": "^1.2.0",
"dash-components-archetype": "^0.2.11",
"prop-types": "^15.5.9",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-preset-stage-2": "^6.24.1",
"dash-components-archetype-dev": "^0.2.11",
"enzyme": "^2.8.2",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"react-test-renderer": "^15.5.4"
}
}