-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "external-results-clearing-on-state-change",
"main": "src/index.js",
"author": "Nikita Skazki <[email protected]>",
"description": "An alternative way to clear Vuelidate's $externalResults on state change, the way that doesn't involve $model",
"repository": "https://github.com/nskazki/external-results-clearing-on-state-change",
"keywords": [
"vuelidate",
"external results"
],
"license": "MIT",
"version": "0.1.0",
"scripts": {
"lint": "eslint .",
"test:2": "node demi/swapScript 2 && jest",
"test:3": "node demi/swapScript 3 && jest"
},
"dependencies": {
"lodash.isnil": "^4.0.0",
"lodash.isobjectlike": "^4.0.0",
"lodash.last": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@vue/composition-api": "^1.7.0",
"@vue/test-utils": "^2.2.6",
"@vue/test-utils2": "npm:@vue/test-utils@^1.3.3",
"@vuelidate/core": "^2.0.0",
"babel-jest": "^29.3.1",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"vue": "^3.2.45",
"vue-template-compiler": "~2.7.14",
"vue2": "npm:vue@~2.7.14"
}
}