-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "monkey-see-monkey-vue",
"version": "1.0.0",
"description": "a monkey/fuzz-testing utility for vue.js applications",
"main": "src/index.js",
"author": "Steven Kalt <kalt.steven@gmail.com>",
"license": "AGPL-3.0-or-later",
"private": false,
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-jest": "^24.7.1",
"core-js": "3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-vue": "^5.2.2",
"jest": "^24.7.1",
"prettier": "^1.17.0",
"rollup": "^1.10.1",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.9.3",
"typescript": "^3.4.5",
"vue": "^2.6.10",
"vue-jest": "git+ssh://git@github.com:vuejs/vue-jest.git#4.0.0-beta.2",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"@mozillasecurity/octo": "^2.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"big-list-of-naughty-strings": "git+https://github.com/minimaxir/big-list-of-naughty-strings.git",
"dedent": "^0.7.0",
"dlv": "^1.1.3",
"jsdom": "^15.0.0",
"jsdom-global": "^3.0.2",
"lodash-es": "^4.17.11",
"postcss": "^7.0.14",
"rollup-plugin-vue": "^5.0.0"
},
"jest": {
"moduleNameMapper": {
"^vue$": "vue/dist/vue.common.js",
"^lodash-es$": "lodash"
},
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "babel-jest",
".*\\.(vue)$": "vue-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(lodash-es))"
]
},
"browserslist": "last 2 versions and not dead and not ie <= 11 and not edge <= 18"
}