-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
67 lines (67 loc) · 1.82 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
65
66
67
{
"name": "vuejs-spreadsheet",
"version": "2.2.1",
"description": "An easier Spreadsheet in Vue",
"main": "dist/vuespreadsheet.common.js",
"author": "Joffrey Berrier <joffrey.berrier@gmail.com>",
"repository": {
"url": "git+https://github.com/joffreyBerrier/vue-spreadsheet.git",
"type": "git"
},
"files": [
"dist/*",
"types/*",
"*.json"
],
"keywords": [
"vue",
"vue-table",
"vuejs",
"typescript",
"components",
"vue-spreadsheet",
"vue-spreadsheet-component"
],
"scripts": {
"serve": "vue-cli-service serve",
"build-package": "vue-cli-service build --target lib --name vuespreadsheet ./src/index.js",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
},
"types": "./types/main.d.ts",
"license": "MIT",
"dependencies": {
"core-js": "^3.6.4",
"fuse.js": "6.4.6",
"lodash.clonedeep": "^4.5.0",
"path": "^0.12.7",
"vue": "^2.6.11"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.1.4",
"babel-eslint": "^10.0.3",
"eslint": "6.8.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "7.9.0",
"node-sass": "^7.0.3",
"prettier": "^2.0.2",
"sass-loader": "^10.3.1",
"vue-template-compiler": "^2.6.11"
},
"bugs": {
"url": "https://github.com/joffreyBerrier/vue-spreadsheet/issues"
},
"homepage": "https://github.com/joffreyBerrier/vue-spreadsheet#readme",
"engines": {
"node": "16.17.0"
}
}