forked from vuejs-tips/vue-the-mask
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.8 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
{
"name": "vue-the-mask",
"version": "0.11.1",
"description": "Tiny (2KB) and dependency free mask input for Vue.js",
"main": "dist/vue-the-mask.js",
"scripts": {
"size": "size-limit",
"upgrade:check": "ncu",
"upgrade:apply": "ncu -a",
"build": "vue build ./src/index.js --config ./build.config.js --dist ./dist/ --prod --lib",
"build:docs": "vue build ./src/docs/ --config ./src/docs/build.config.js --dist ./docs/ --prod",
"docs:serve": "serve ./",
"compile": "npm run build -- --disable-compress",
"test": "jest",
"e2e:install-global-dependencies": "yarn global add selenium-standalone@latest && selenium-standalone install",
"e2e:start-fixture": "vue build ./test/fixture.vue --host 0.0.0.0",
"e2e:start-selenium": "selenium-standalone start",
"e2e:run": "nightwatch ./test/nightwatch.js",
"dev": "vue build --host 0.0.0.0 ./src/docs/docs.vue --config ./src/docs/build.config.js"
},
"files": [
"dist/",
"src/*.js",
"src/*.vue"
],
"keywords": [
"vue",
"mask"
],
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
},
"size-limit": [
{
"path": "dist/vue-the-mask.js",
"limit": "1.51 KB"
}
],
"author": "Marcos Neves <[email protected]> (https://vuejs-tips.github.io/)",
"license": "MIT",
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-preset-vue-app": "^1.3.1",
"jest": "^21.2.1",
"jest-vue-preprocessor": "^1.2.0",
"nightwatch": "^0.9.16",
"npm-check-updates": "^2.13.0",
"size-limit": "^0.11.6",
"vue": "^2.4.4",
"vue-template-compiler": "^2.4.4",
"vue-template-es2015-compiler": "^1.5.3"
}
}