-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "@dmaksimovic/vue-countdown",
"version": "1.0.0",
"description": "VueJS 2.0 countdown component",
"author": "Danijel Maksimovic <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/maksimovicdanijel/vue-countdown"
},
"main": "dist/vue-countdown.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"test": "cross-env BABEL_ENV=test karma start karma.conf.js --single-run",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"keywords": [
"vue",
"countdown",
"timer"
],
"license": "MIT",
"devDependencies": {
"@types/karma": "^0.13.36",
"@types/karma-jasmine": "0.0.29",
"@types/vue": "^2.0.0",
"@types/webpack-notifier": "^1.5.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^2.13.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.5",
"eslint": "^4.5.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.2.0",
"jasmine-core": "^2.7.0",
"karma": "^1.7.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.4",
"phantomjs-prebuilt": "^2.1.15",
"vue": "^2.4.2",
"vue-loader": "^13.0.4",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.5.5",
"webpack-notifier": "^1.5.0"
},
"dependencies": {
"easytimer": "^1.1.1"
}
}