-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.67 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
{
"name": "@dansmaculotte/vue-crisp-chat",
"version": "0.1.0",
"description": "Vue.js plugin for Crisp Chat",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --config docs/webpack.config.js",
"build": "rm -rf dist && NODE_ENV=production webpack",
"lint": "eslint --ext .js,.vue --fix src __tests__; exit 0",
"prepublish": "npm run test; npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/dansmaculotte/vue-crisp-chat.git"
},
"keywords": [
"vue",
"vue-plugin",
"crisp-chat"
],
"author": "author_name",
"license": "MIT",
"bugs": {
"url": "https://github.com/dansmaculotte/vue-crisp-chat"
},
"homepage": "https://github.com/dansmaculotte/vue-crisp-chat",
"peerDependencies": {
"vue": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"css-loader": "^0.28.1",
"dotenv": "^8.2.0",
"eslint": "^3.7.1",
"eslint-config-spatie": "^1.1.0",
"jest": "^19.0.0",
"jest-vue-preprocessor": "^0.2.0",
"vue": "^2.3.0",
"vue-loader": "^12.0.3",
"vue-template-compiler": "^2.3.0",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"webpack-merge": "^4.1.0"
},
"jest": {
"testRegex": "test.js$",
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
}
}