-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.87 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
{
"name": "vue-xstate",
"version": "2.1.8",
"description": "xState implementation for VueJS as Mixin",
"author": "Aram Sabatés Bermúdez",
"scripts": {
"build": "yarn build:js && yarn build:declarations",
"build:js": "vue-cli-service build --target lib --formats commonjs src/index.ts --filename index && yarn rename",
"build:declarations": "tsc --emitDeclarationOnly true --declaration true",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"rename": "mv dist/index.common.js dist/index.js",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"dependencies": {
"uuid": "^8.0.0"
},
"peerDependencies": {
"xstate": "^4.9.x"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-eslint": "^4.5.12",
"@vue/cli-plugin-typescript": "^4.5.12",
"@vue/cli-plugin-unit-jest": "^4.5.12",
"@vue/cli-service": "^4.5.12",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "1.0.0-beta.31",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^6.2.2",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"typescript": "~3.8.3",
"vue-template-compiler": "^2.6.11",
"xstate": "^4.9.1"
},
"homepage": "https://github.com/asbermudez/vue-xstate",
"keywords": [
"xstate",
"state machine",
"vue",
"vuejs",
"mixin",
"mixins"
],
"license": "MIT",
"repository": "https://github.com/asbermudez/vue-xstate",
"types": "dist/index.d.ts"
}