-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.96 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
{
"name": "@cz-nic/django-forms-vuetify",
"version": "0.0.1",
"description": "Create Vuetify forms from encoded django forms in JSON",
"author": "Karin Strouhalů <karin.strouhalu@nic.cz>",
"license": "GPL-3.0",
"main": "dist/django-forms-vuetify.common.js",
"homepage": "https://github.com/CZ-NIC/django-forms-vuetify",
"repository": {
"type": "git",
"url": "https://github.com/CZ-NIC/django-forms-vuetify"
},
"keywords": [
"django-forms",
"vuetify",
"dynamic form",
"dynamic vuetify form"
],
"bugs": {
"url": "https://github.com/CZ-NIC/django-forms-vuetify/issues"
},
"scripts": {
"build": "vue-cli-service build --target lib --name 'django-forms-vuetify' src/main.ts",
"check": "vue-cli-service lint --max-errors 0 --max-warnings 0 tests src",
"test": "vue-cli-service test:unit",
"watch": "vue-cli-service build --watch --mode development --target lib --name 'django-forms-vuetify' src/main.ts",
"prepublish": "npm run build"
},
"dependencies": {
"core-js": "^3.6.4",
"vue": "^2.6.11",
"vuetify": "^2.2.16"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/cli-plugin-babel": "^4.2.0",
"@vue/cli-plugin-eslint": "^4.2.0",
"@vue/cli-plugin-typescript": "^4.2.0",
"@vue/cli-plugin-unit-jest": "^4.2.0",
"@vue/cli-service": "^4.2.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "1.0.0-beta.31",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"jest": "^25.1.0",
"reflect-metadata": "^0.1.13",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"ts-jest": "^25.2.1",
"typescript": "~3.7.5",
"vue-cli-plugin-vuetify": "^2.0.5",
"vue-property-decorator": "^8.4.0",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.4.3"
},
"files": [
"dist",
"src",
"tests",
"*.js",
"*.json"
]
}