-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.11 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
{
"name": "vue-dni",
"version": "1.0.1",
"description": "Vue utility functions for validating and formatting DNIs",
"main": "dist/vue-dni.js",
"files": [
"dist",
"README.md",
"yarn.lock"
],
"scripts": {
"test": "jest",
"build": "babel src -d dist --ignore '**/*.spec.js' && uglifyjs dist/vue-dni.js -o dist/vue-dni.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/platanus/vue-dni.git"
},
"keywords": [
"vue",
"rut",
"chile",
"dni"
],
"author": "Guillermo Moreno <[email protected]>",
"contributors": [
"Mario López <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/platanus/vue-dni/issues"
},
"homepage": "https://github.com/platanus/vue-dni#readme",
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"jest": "^24.9.0",
"uglify-js": "^2.7.4",
"vue": "^2.6.11",
"babel-jest": "^24.9.0"
},
"dependencies": {
"rut-helpers": "^0.1.1"
},
"peerDependencies": {
"vue": "^2.6.11"
}
}