This repository was archived by the owner on Dec 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
{
"name": "talquei",
"version": "1.0.1",
"description": "Vue components to build webforms looking like a conversation.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"cdn": "./dist/index.min.js",
"jsdelivr": "./dist/index.min.js",
"unpkg": "./dist/index.min.js",
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build:example": "poi --prod",
"build": "bili --bundle-node-modules",
"example": "poi --serve",
"gh": "npm run build:example && gh-pages -d example/dist",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"vue",
"form",
"conversation",
"chatbot"
],
"license": "MIT",
"private": false,
"author": {
"name": "Lúcio Rubens",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luciorubeens/talquei.git"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.5",
"@poi/plugin-eslint": "^12.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"bili": "^4.8.0",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-posva": "^2.0.3",
"gh-pages": "^2.0.1",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"poi": "^12.6.10",
"postcss-preset-env": "^6.6.0",
"regenerator-runtime": "^0.13.2",
"rollup-plugin-vue": "^5.0.0",
"sass-loader": "^7.1.0",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.6.10"
}
}