forked from FiguredLimited/vue-mc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·102 lines (102 loc) · 2.65 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "vue-mc",
"version": "0.6.0",
"description": "",
"license": "MIT",
"main": "vue-mc.js",
"module": "vue-mc.es.js",
"keywords": [
"vue",
"collection",
"datastore",
"model",
"models",
"store",
"structures",
"validation"
],
"files": [
"validation",
"vue-mc.js",
"vue-mc.es.js"
],
"types": "src/index.d.ts",
"bugs": {
"url": "https://github.com/FiguredLimited/vue-mc/issues"
},
"homepage": "https://github.com/FiguredLimited/vue-mc",
"repository": {
"type": "git",
"url": "https://github.com/FiguredLimited/vue-mc.git"
},
"author": {
"name": "Rudi Theunissen",
"email": "[email protected]",
"url": "https://github.com/rtheunissen"
},
"dependencies": {
"axios": "0.19.0",
"date-fns": "^2.0.0-beta.4",
"lodash": "^4.17.15",
"validator": "^10.9.0",
"vue": "^2.5.17"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"@types/chai": "^4.1.6",
"@types/lodash": "^4.14.145",
"@types/mocha": "^5.2.5",
"@types/moxios": "^0.4.8",
"@types/node": "^10.12.0",
"@types/validator": "^9.4.2",
"@typescript-eslint/eslint-plugin": "^1.3.0",
"@typescript-eslint/parser": "^1.3.0",
"array-permutation": "^0.2.0",
"babel-plugin-istanbul": "^5.1.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"mocha": "^6.2.0",
"moxios": "^0.4.0",
"nyc": "^14.1.1",
"rollup": "^1.19.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.19.2",
"source-map-support": "^0.5.9",
"ts-node": "^8.0.2",
"typescript": "^3.6.4"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint ./src/**/*.ts",
"test": "tsc && nyc mocha",
"docs": "cd docs && jekyll serve",
"prepublishOnly": "yarn test && yarn build"
},
"nyc": {
"require": [
"@babel/register"
],
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.js",
"src/**/*.d.ts"
],
"reporter": [
"lcov",
"text",
"html"
],
"sourceMap": true,
"instrument": false
}
}