-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "vuejs-smart-table",
"keywords": [
"vue",
"table",
"grid",
"datagrid"
],
"version": "0.0.8",
"private": false,
"main": "src/main.js",
"author": "Hector Romero Granillo",
"repository": "https://github.com/tochoromero/vuejs-smart-table",
"license": "MIT",
"scripts": {
"build": "vue-cli-service build --target lib --name smart-table src/main.js",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit --reporter mocha-junit-reporter --reporter-options mochaFile=./tests/results/test_results.xml",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"dependencies": {
"vue": "^2.5.17"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.6.3",
"@vue/cli-plugin-babel": "^3.1.1",
"@vue/cli-plugin-eslint": "^3.1.5",
"@vue/cli-plugin-unit-mocha": "^3.1.1",
"@vue/cli-service": "^3.1.4",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-eslint": "^10.0.1",
"bootstrap": "^4.2.1",
"chai": "^4.1.2",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0-0",
"lint-staged": "^7.2.2",
"mocha-junit-reporter": "^1.18.0",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"vue-template-compiler": "^2.5.17",
"vuepress": "^0.14.8"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}