-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
126 lines (126 loc) · 4.19 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "vuex-plugin-firemodel",
"version": "1.0.0-beta.140",
"description": "A Vuex plugin which reponds to all FireModel actions as well as providing mutations which can be imported by your state tree.",
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"typings": "dist/es/index.d.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"clean": "rimraf dist",
"clean:nuclear": "rimraf lib dist yarn.lock node_modules && yarn cache clean && yarn && yarn upgrade",
"test": "yarn jest",
"test:dirs": "yarn tnode src/types && yarn tnode src/auth && yarn tnode src/errors && yarn tnode src/store && yarn tnode src/util",
"tnode": "yarn ts-node -r tsconfig-paths/register",
"docs": "vuepress dev docs",
"build": "run-s clean build:bundle",
"build:bundle": "rollup -c",
"build:tsc": "yarn ttsc -P tsconfig.es.json && yarn ttsc -P tsconfig.cjs.json",
"watch": "yarn tsc --watch -P tsconfig.json",
"autoindex": "yarn do autoindex",
"build:docs": "vuepress build docs",
"visualize": "yarn madge src --ts-config tsconfig.json --extensions ts -i /tmp/dep-visualize.png && open /tmp/dep-visualize.png",
"circular": "yarn madge src --extensions ts --circular",
"orphans": "yarn madge src --extensions ts --orphans",
"leaves": "yarn madge src --extensions ts --leaves",
"warnings": "yarn madge src --extensions ts --warnings",
"summary": "yarn madge src --extensions ts --summary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forest-fire/vuex-plugin-firemodel.git"
},
"keywords": [
"firebase",
"firemodel",
"vuejs",
"vuex",
"state-management"
],
"author": "Ken Snyder",
"license": "MIT",
"bugs": {
"url": "https://github.com/forest-fire/vuex-plugin-firemodel/issues"
},
"homepage": "https://vuex.firemodel.info",
"dependencies": {
"@types/node": "12",
"common-types": "^1.25.0",
"fast-copy": "^2.1.0",
"fast-equals": "^2.0.0",
"firemock": "^0.59.7",
"native-dash": "^1.7.1",
"typed-conversions": "^0.11.1"
},
"peerDependencies": {
"firemodel": "^0.59.7",
"js-cookie": "^3.0.0-rc.0",
"universal-fire": "^0.59.7",
"vue": "^2.6.13",
"vuex": "^3.6.2"
},
"optionalDependencies": {
"common-types": "^1.25.0",
"firemock": "^0.59.7",
"typed-conversions": "^0.11.1"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@forest-fire/types": "^0.59.7",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/jest": "^26.0.23",
"@types/js-cookie": "^2.2.6",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vuepress/plugin-back-to-top": "^1.5.1",
"@vuepress/plugin-last-updated": "^1.5.1",
"@vuepress/plugin-medium-zoom": "^1.5.1",
"@vuepress/plugin-pwa": "^1.5.1",
"async-shelljs": "^0.1.4",
"babel-jest": "^26.1.0",
"common-types": "^1.25.0",
"dd": "^0.11.3",
"esbuild": "^0.12.5",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.10.0",
"fake-indexeddb": "^3.0.0",
"firemodel": "^0.59.7",
"jest": "^27.0.3",
"jest-extended": "^0.11.5",
"js-cookie": "^3.0.0-rc.0",
"madge": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"rimraf": "^3.0.0",
"rollup": "^2.50.5",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.2",
"ts-node": "^10",
"tsconfig-paths": "^3.9.0",
"tslib": "^2.1.0",
"tslint": "^6.1.2",
"ttypescript": "^1.5.12",
"typed-conversions": "^0.11.1",
"typescript": "^4.2.4",
"typescript-transform-paths": "^2.2.0",
"universal-fire": "^0.59.7",
"vue": "^2.6.13",
"vuepress": "^1.5.2",
"vuepress-plugin-container": "^2.1.4",
"vuex": "^3.6.2"
}
}