forked from e-Spirit/fsxa-pattern-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.09 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
{
"name": "fsxa-pattern-library",
"version": "8.6.1",
"author": {
"name": "Tobias Golbs",
"email": "[email protected]"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name fsxa-pattern-library src/index.ts",
"build:local": "rimraf fsxa-pattern-library-*.tgz && npm version prerelease --no-git-tag-version --preid alpha && npm run build && npm pack",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"commit": "git-cz",
"commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
"prebuild": "rimraf dist",
"precommit": "lint-staged",
"prepush": "npm run build",
"semantic-release": "semantic-release",
"semantic-release:dry-run": "semantic-release --dry-run"
},
"main": "./dist/fsxa-pattern-library.umd.min.js",
"files": [
"dist",
"package.json",
"src/types",
"src/constants.ts",
"src/store",
"README.md"
],
"dependencies": {
"fsxa-api": "^10.3.0",
"prismjs": "^1.27.0",
"setimmediate": "^1.0.5",
"vue": "^2.6.14",
"vue-prism-component": "^1.2.0",
"vue-property-decorator": "8.2.2",
"vue-tsx-support": "^2.3.3",
"vuex": "^3.6.2"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/vue": "^5.8.2",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-plugin-typescript": "^4.5.15",
"@vue/cli-plugin-unit-jest": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "1.3.0",
"autoprefixer": "9.8.6",
"commitizen": "^4.1.2",
"cross-fetch": "^3.1.5",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.3.8",
"lint-staged": "^9.5.0",
"nock": "^13.2.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"tailwindcss": "^1.9.6",
"typescript": "^3.9.10",
"vue-template-compiler": "^2.6.14"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"license": "Apache-2.0",
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/e-Spirit/fsxa-pattern-library.git"
},
"types": "src/types/fsxa-pattern-library.d.ts"
}