-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "vue-convenia-util",
"version": "1.0.0",
"description": "Plugin com validações, formatações e filtros para projetos Vue.",
"keywords": [
"convenia",
"vue",
"vue-plugin",
"validation",
"format"
],
"author": {
"name": "Vitor Cavalcanti",
"url": "https://vitorluizc.github.io/",
"email": "[email protected]"
},
"license": "MIT",
"main": "./dist/vue-convenia-util.common.js",
"module": "./dist/vue-convenia-util.es.js",
"watch": {
"build": "src/*.js",
"test": "{src,test}/*.js"
},
"scripts": {
"start": "npm-watch",
"test": "jest",
"build": "bili ./src/index.js --format es --format cjs --exports named",
"prepare": "npm run build && npm run test"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-jest": "^24.8.0",
"bili": "^0.19.0",
"jest": "^24.8.0",
"npm-watch": "^0.3.0",
"poi": "^9.5.4",
"sinon": "^4.1.2",
"standard": "^10.0.3",
"vue": "^2.5.9"
},
"standard": {
"ignore": [
"dist/vue-convenia-util.common.js",
"dist/vue-convenia-util.es.js"
]
},
"dependencies": {
"dayjs-ext": "^2.2.0",
"normalize-text": "^0.2.0"
}
}