-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.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
{
"name": "vue-mini-state",
"version": "1.0.1",
"description": "State Management for Vuejs",
"main": "src/index.ts",
"directories": {
"src": "src",
"tests": "tests"
},
"scripts": {
"build": "tsc",
"test:unit": "vue-cli-service test:unit",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jprivillaso/vue-mini-state.git"
},
"keywords": [
"vue",
"state",
"state-management"
],
"author": "Juan Pablo Rivillas",
"license": "MIT",
"bugs": {
"url": "https://github.com/jprivillaso/vue-mini-state/issues"
},
"homepage": "https://github.com/jprivillaso/vue-mini-state#readme",
"dependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-plugin-eslint": "~4.3.0",
"@vue/cli-plugin-typescript": "~4.3.0",
"@vue/cli-plugin-unit-jest": "~4.3.0",
"@vue/cli-service": "~4.3.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "1.0.0-beta.31",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^1.19.1",
"typescript": "~3.8.3",
"vue-template-compiler": "^2.6.11"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"types": "dist/index.d.ts"
}