-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.5 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
{
"name": "mantra",
"version": "0.1.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Gewaer/mantra"
},
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"lint": "eslint --ignore-path .gitignore --ext js,vue ."
},
"files": [
"lib/**",
"*.js"
],
"keywords": [
"mantra",
"form",
"Vue",
"VueJS"
],
"author": "Jonathan German",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gewaer/mantra/issues"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/jest": "^25.1.4",
"@vue/test-utils": "^1.0.0-beta.32",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.0.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.3",
"jest": "^25.0.0",
"jest-extended": "^0.11.5",
"jest-watch-typeahead": "^0.4.2",
"lint-staged": "^10.1.0",
"vue": "^2.6.11",
"vue-eslint-parser": "^7.0.0",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.1.3"
},
"dependencies": {
"lodash": "^4.17.15"
},
"peerDependencies": {
"vue": "^2.6.11"
}
}