-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "@smithalan2/vue-countdown",
"version": "1.0.1",
"private": false,
"scripts": {
"start": "vue-cli-service serve demo/main.js",
"build--package": "vue-cli-service build --target lib --name vue-countdown --report src/index.js",
"build--demo": "cross-env BUILD_DEMO=true vue-cli-service build --dest docs demo/main.js",
"test": "vue-cli-service test:unit",
"test--watch": "vue-cli-service test:unit --watch",
"lint": "vue-cli-service lint"
},
"main": "dist/vue-countdown.umd.js",
"files": [
"dist/vue-countdown.umd.min.js",
"dist/vue-countdown.umd.min.js.map"
],
"author": "Alan Smith <alan@mralansmith.com>",
"license": "MIT",
"keywords": [
"vuejs",
"vue3",
"countdown",
"timer"
],
"bugs": {
"url": "https://github.com/smithalan92/vue-countdown/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smithalan92/vue-countdown.git"
},
"dependencies": {
"date-fns": "^2.16.1",
"vue": "^3.0.0"
},
"devDependencies": {
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/test-utils": "^2.0.0-0",
"cross-env": "^7.0.2",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^7.0.0-0",
"vue-jest": "^5.0.0-0"
}
}