forked from spatie/vue-table-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.99 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
68
69
70
71
{
"name": "vue-table-component",
"version": "1.9.2",
"description": "A straightforward Vue component to filter and sort tables",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --config docs/webpack.config.js",
"demo": "NODE_ENV=production webpack --config docs/webpack.config.js",
"build": "rm -rf dist && NODE_ENV=production webpack",
"lint": "eslint src __tests__ --ext .js,.vue --fix; exit 0",
"prepublish": "npm run test; npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/spatie/vue-table-component.git"
},
"keywords": [
"spatie"
],
"author": "Freek Van der Herten",
"license": "MIT",
"bugs": {
"url": "https://github.com/spatie/vue-table-component/issues"
},
"homepage": "https://github.com/spatie/vue-table-component",
"peerDependencies": {
"moment": "^2.18.1",
"vue": "^2.5.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",
"diffable-html": "^2.1.0",
"eslint": "^4.0.0",
"eslint-config-spatie": "^2.0.0",
"jest": "^19.0.0",
"jest-serializer-html": "^4.0.0",
"jest-vue-preprocessor": "^0.2.0",
"moment": "^2.18.1",
"simulant": "^0.2.2",
"vue": "^2.5.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"
],
"setupFiles": [
"<rootDir>/tests/bootstrap"
],
"snapshotSerializers": [
"<rootDir>/tests/html-serializer"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
}
}