-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.57 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@unicorns/data-table",
"version": "2.3.2",
"description": "Vue component for rendering data-tables",
"author": "Unicorn Global et al",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha-webpack --ui bdd --webpack-config webpack.config.js --require test/setup.js \"./test/specs/**/*.spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/UnicornGlobal/data-table.git"
},
"keywords": [
"vue",
"datatable",
"table"
],
"bugs": {
"url": "https://github.com/UnicornGlobal/data-table/issues"
},
"files": [
"index.js",
"index.js.map"
],
"homepage": "https://github.com/UnicornGlobal/data-table#readme",
"dependencies": {
"@unicorns/avatars": "^2.1.1"
},
"peerDependencies": {
"moment": "^2.24.0",
"pikaday": "^1.8.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@vue/test-utils": "^1.0.0-beta.32",
"ajv": "^6.10.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"expect": "^24.9.0",
"file-loader": "^4.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdom": "15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.0",
"mocha-webpack": "2.0.0-beta.0",
"moment": "^2.24.0",
"node-sass": "^4.13.1",
"nyc": "^14.1.1",
"pikaday": "^1.8.0",
"sass-loader": "^7.3.1",
"sass-resources-loader": "^2.0.1",
"sinon": "^7.4.2",
"sinon-chai": "^3.3.0",
"style-loader": "^1.0.0",
"tar": ">=2.2.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "2.6.10",
"vue-loader": "^15.7.1",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "2.6.10",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0",
"webpack-node-externals": "^1.6.0"
},
"nyc": {
"include": [
"src"
]
}
}