-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.97 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": "vue-crono",
"version": "2.0.9",
"description": "Simple timers/jobs for vue components",
"main": "index.js",
"scripts": {
"test": "jest --runInBand",
"coverage": "jest --runInBand --coverage",
"buildExample": "rm -rf docs&&cross-env NODE_ENV=development&& parcel build ./src/index.html --no-minify --public-url ./ --out-dir ./docs",
"dist": "cross-env NODE_ENV=production && parcel build ./src/browserBuild.js --out-file ./dist/index.js --no-source-maps",
"build": "npm-run-all buildExample dist",
"quality": "eslint src/ --ext .js,.vue --fix"
},
"repository": "https://github.com/BrianRosamilia/vue-crono",
"keywords": [
"vue",
"vue schedule",
"vue cron",
"cron",
"vue poll",
"vue interval"
],
"author": "Brian Rosamilia",
"license": "MIT",
"devDependencies": {
"@vue/component-compiler-utils": "^2.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-inline-environment-variables": "^0.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-runtime": "^6.26.0",
"cross-env": "^5.2.0",
"eslint": "^4.10.0",
"eslint-plugin-vue": "^5.0.0-beta.2",
"jest": "^25.2.4",
"jest-vue-preprocessor": "^1.4.0",
"moment": "^2.8.3",
"npm-run-all": "^4.1.3",
"parcel-bundler": "^1.12.4",
"stylelint": "^13.6.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-scss": "^3.8.0",
"uglify-es": "^3.1.9",
"vue": "^2.5.17",
"vue-template-compiler": "^2.5.16"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
},
"dependencies": {
"es6-template-strings": "^2.0.1"
}
}