This repository has been archived by the owner on Jan 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.98 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
{
"name": "@sum.cumo/vue-states",
"version": "1.3.2",
"description": "Component-based Vue.js state management",
"main": "dist/vue-states.umd.js",
"module": "dist/vue-states.esm.js",
"unpkg": "dist/vue-states.min.js",
"types": "dist/index.d.ts",
"keywords": [
"vue",
"vuex",
"state",
"management",
"mvc",
"model",
"controller"
],
"repository": {
"type": "git",
"url": "[email protected]:sumcumo/vue-states.git"
},
"homepage": "https://github.com/sumcumo/vue-states",
"scripts": {
"test": "jest --coverage=false",
"test.coverage": "jest",
"release": "git checkout master && git pull origin master && standard-version",
"lint": "tslint -p ./tsconfig.base.json",
"build": "npm run build:clear && npm run build:browser && npm run build:es && npm run build:umd",
"build:clear": "rm -rf ./dist",
"build:browser": "rollup --config build/rollup.config.browser.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"prepack": "npm run test.coverage && npm run lint && npm run build"
},
"author": "sum.cumo GmbH",
"license": "Apache-2.0",
"dependencies": {
"vue-class-component": "^7.2.6"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/jest": "26.0.20",
"@vue/test-utils": "1.1.2",
"husky": "4.3.8",
"jest": "26.6.3",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"rollup": "2.36.1",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.29.0",
"standard-version": "9.1.0",
"ts-jest": "26.5.0",
"tslib": "2.1.0",
"tslint": "6.1.3",
"tslint-config-airbnb": "5.11.2",
"tslint-config-prettier": "1.18.0",
"typescript": "4.1.3",
"vue": "2.6.12",
"vue-template-compiler": "2.6.12"
},
"peerDependencies": {
"vue": ">=2.5.0"
},
"contributors": [
"Steffan Schiewe (https://github.com/steffans)"
]
}