1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "chatui",
- "version": "1.0.0",
- "description": "A javascript chatbot library for frontend / UI development",
- "main": "build.js",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1",
- "lint": "jshint src/js/",
- "doc": "./node_modules/.bin/jsdoc ./src/js/index-d3.js --destination docs",
- "prebuild": "npm run lint && npm run doc",
- "build": "node build.js"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/svift-org/ChatUI.git"
- },
- "keywords": [
- "conversational",
- "chatbot",
- "chat",
- "ui",
- "interface",
- "js"
- ],
- "author": "Sebastian Meier",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/svift-org/ChatUI/issues"
- },
- "homepage": "https://github.com/svift-org/ChatUI#readme",
- "devDependencies": {
- "fs": "0.0.1-security",
- "jsdoc": "^3.5.5",
- "jshint": "^2.9.5",
- "node-sass": "^4.7.1",
- "uglify-js2": "^2.1.11"
- }
- }
|