-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 2.52 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
{
"name": "bulletproof",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"deploy": "node ./scripts/publish.js"
},
"dependencies": {
"animejs": "^3.2.1",
"convert-css-length": "^2.0.1",
"core-js": "^3.6.5",
"decimal.js": "^10.2.1",
"detect-browser": "^4.8.0",
"grapheme-splitter": "^1.0.4",
"hamsterjs": "^1.1.3",
"keen-ui": "1.3.1",
"language-data": "^0.1.2",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"opentype.js": "git+https://github.com/hyvyys/opentype.js.git#stylistic-set-names",
"vue": "^2.6.12",
"vue-closable": "0.0.3",
"vue-color": "^2.7.1",
"vue-observe-visibility": "^0.4.6",
"vue-router": "^3.4.6",
"vue-worker": "^1.2.1",
"vuebar": "github:hyvyys/vuebar",
"vuex": "^3.5.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-eslint": "~4.5.15",
"@vue/cli-plugin-unit-jest": "~4.5.15",
"@vue/cli-service": "~4.5.15",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"gh-pages": "^2.2.0",
"markdown-it": "^9.1.0",
"node-sass": "^4.14.1",
"sass-loader": "^10.2.0",
"vue-svg-inline-loader": "^1.5.0",
"vue-template-compiler": "^2.6.12",
"ware-loader": "^0.2.4",
"worker-loader": "^2.0.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(keen-ui|tippy\\.js|popper\\.js|vue-color)/)"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
}
}