-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.47 KB
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
{
"name": "dash-wordcloud",
"version": "0.3.4",
"description": "A Dash UI component for wordcloud visualization",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ssword/dash-wordcloud.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ssword/dash-wordcloud/issues"
},
"homepage": "https://github.com/ssword/dash-wordcloud",
"scripts": {
"copy-lib": "copyfiles -u 1 lib/* dash_wordcloud",
"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-git": "git push --follow-tags",
"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-watch": "builder run test-frontend-watch",
"test-debug": "builder run test-frontend-debug",
"uninstall-local": "pip uninstall dash-wordcloud -y"
},
"dependencies": {
"builder": "3.2.2",
"copyfiles": "^1.2.0",
"dash-components-archetype": "^0.2.11",
"jshint": "^2.9.5",
"jumia-travel-changelog": "^0.9.2",
"prop-types": "^15.5.9",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"wordcloud": "^1.1.0"
},
"devDependencies": {
"dash-components-archetype-dev": "^0.2.11",
"enzyme": "^2.8.2",
"react-test-renderer": "^15.5.4"
}
}