-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·85 lines (85 loc) · 2.27 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
{
"name": "@dylan-chapman/vue-mc",
"version": "0.3.1",
"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"
],
"bugs": {
"url": "https://github.com/Dylan-Chapman/vue-mc/issues"
},
"homepage": "https://github.com/Dylan-Chapman/vue-mc",
"repository": {
"type": "git",
"url": "https://github.com/Dylan-Chapman/vue-mc.git"
},
"author": {
"name": "Rudi Theunissen",
"email": "[email protected]",
"url": "https://github.com/rtheunissen"
},
"dependencies": {
"axios": "^0.18",
"date-fns": "^2.0.0-alpha.14",
"lodash": "^4.17",
"validator": "^10.4.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.54",
"@babel/plugin-transform-runtime": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/register": "^7.0.0-beta.54",
"@babel/runtime": "^7.0.0-beta.54",
"array-permutation": "^0.2.0",
"axios": "^0.18",
"babel-plugin-istanbul": "^4.1.6",
"chai": "^4.1.2",
"eslint": "^5.2.0",
"lodash": "^4.17",
"mocha": "^5.2.0",
"moxios": "^0.4.0",
"nyc": "^12.0.2",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"vue": "^2.5"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint ./src/",
"test": "nyc mocha ./test",
"docs": "cd docs && jekyll serve",
"prepublishOnly": "npm run test && npm run build"
},
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text",
"html"
],
"sourceMap": false,
"instrument": false
}
}