modified: myjupyterlab.sh
[GalaxyCodeBases.git] / js / TagSelect.js / package.json
blob3028d87767b42a06f9b86b5c7c13810f67ee9798
2   "name": "TagSelect.js",
3   "version": "1.0.0",
4   "description": "HTML5-based input for typing lists of tags, tokens, or other discrete values.",
5   "main": "src/TagSelect.js",
6   "config": {
7     "lite": "-i array-equal -i array-to-map -i array-uniq -i escape-html -i object-assign"
8   },
9   "scripts": {
10     "dev": "budo browser.js:bundle.js --onupdate 'npm run build'",
11     "build": "run-p build:**",
12     "build:css": "node-sass src/*.scss dist/tagselect.min.css --output-style compact",
13     "build:full": "webpack --output-filename dist/tagselect.js",
14     "build:full:min": "webpack --minify --output-filename dist/tagselect.min.js",
15     "build:lite": "webpack --lite --output-filename dist/tagselect.lite.js",
16     "build:lite:min": "webpack --lite --minify --output-filename dist/tagselect.lite.min.js",
17     "dist": "npm run build",
18     "version": "npm run build && git add -A dist",
19     "postversion": "git push && git push --tags && npm publish"
20   },
21   "repository": {
22     "type": "git",
23     "url": "git://github.com/graphiq/TagSelect.js.git"
24   },
25   "keywords": [
26     "tag",
27     "token",
28     "input",
29     "html5",
30     "form",
31     "textarea",
32     "autocomplete",
33     "autosuggest",
34     "list",
35     "select"
36   ],
37   "author": "Graphiq, Inc.",
38   "license": "MIT",
39   "bugs": {
40     "url": "https://github.com/graphiq/TagSelect.js/issues"
41   },
42   "homepage": "https://github.com/graphiq/TagSelect.js",
43   "dependencies": {
44     "lodash": "^4.13.1"
45   },
46   "devDependencies": {
47     "budo": "^8.2.2",
48     "envify": "^3.4.0",
49     "lodash-webpack-plugin": "^0.9.1",
50     "node-sass": "^4.14.1",
51     "npm-run-all": "^2.1.1",
52     "transform-loader": "^0.2.3",
53     "webpack": "^1.13.1"
54   }