-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·111 lines (111 loc) · 2.73 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
103
104
105
106
107
108
109
110
111
{
"name": "@planetadeleste/vuemc",
"version": "1.0.13",
"description": "Models and Collections for Vue 3. Maintained version.",
"license": "MIT",
"main": "dist/vuemc.js",
"module": "dist/vuemc.es.js",
"types": "src/vuemc.d.ts",
"keywords": [
"vue",
"collection",
"datastore",
"model",
"models",
"store",
"structures",
"validation"
],
"files": [
"dist",
"validation",
"src/vuemc.d.ts"
],
"bugs": {
"url": "https://github.com/planetadeleste/vuemc/issues"
},
"homepage": "https://github.com/planetadeleste/vuemc",
"repository": {
"type": "git",
"url": "git+https://github.com/planetadeleste/vuemc.git"
},
"author": "Rudi Theunissen <[email protected]> (https://github.com/rtheunissen)",
"dependencies": {
"axios": "^1.2.1",
"date-fns": "^2.29.3",
"lodash": "^4.17.21",
"validator": "^13.7.0",
"vue": "^3.2.45"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^23.0.5",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/chai": "^4.3.4",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/moxios": "^0.4.15",
"@types/node": "^18.11.16",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"array-permutation": "^0.2.0",
"babel-plugin-istanbul": "^6.1.1",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.7",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"moxios": "^0.4.0",
"nyc": "^15.1.0",
"prettier": "^2.8.1",
"prettier-plugin-jsdoc": "^0.4.2",
"rollup": "^3.7.5",
"rollup-plugin-typescript2": "^0.34.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"scripts": {
"build": "rimraf ./dist && rollup -c --bundleConfigAsCjs",
"lint": "eslint ./src/**/*.ts",
"test": "tsc && nyc mocha",
"docs": "cd docs && jekyll serve",
"clean": "rimraf ./dist ./validation ./src/*/*.map ./src/*/*.js",
"prepublish-Only": "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
},
"directories": {
"doc": "docs",
"test": "test"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}