-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
104 lines (104 loc) · 3.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "vue-add-to-calendar",
"description": "A Vue.js component providing 'Add to Calendar' functionality",
"version": "1.0.7",
"author": {
"name": "nicolasbeauvais",
"email": "nicolasbeauvais1@gmail.com"
},
"bugs": {
"url": "https://github.com/nicolasbeauvais/vue-add-to-calendar/issues"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.0",
"babel-plugin-coverage": "^1.0.0",
"babel-plugin-espower": "^2.0.0",
"babel-preset-es2015": "^6.1.18",
"buble": "^0.13.1",
"chromedriver": "^2.46.0",
"conventional-changelog-cli": "^1.1.1",
"conventional-github-releaser": "^1.1.3",
"cross-spawn": "^4.0.0",
"dotenv": "^2.0.0",
"eslint": "^4.19.1",
"eslint-config-vue": "^1.1.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-html": "^1.5.2",
"html-webpack-plugin": "^2.19.0",
"http-server": "^0.12.3",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^6.3.14",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^1.7.0",
"nightwatch": "^0.9.0",
"nightwatch-helpers": "^1.0.0",
"phantomjs-prebuilt": "^2.1.1",
"power-assert": "^1.2.0",
"rollup": "^0.34.10",
"rollup-plugin-buble": "^0.13.0",
"rollup-plugin-replace": "^1.1.0",
"selenium-server": "2.53.1",
"uglify-js": "^2.6.1",
"vue": "^2.6.12",
"webpack": "^1.12.9",
"webpack-dev-server": "^3.11.1"
},
"files": [
"dist/vue-add-to-calendar.js",
"dist/vue-add-to-calendar.min.js",
"dist/vue-add-to-calendar.common.js",
"src"
],
"homepage": "https://github.com/nicolasbeauvais/vue-add-to-calendar#readme",
"jsnext:main": "src/index.js",
"keywords": [
"plugin",
"vue",
"vuejs",
"calendar",
"share",
"add"
],
"license": "MIT",
"main": "dist/vue-add-to-calendar.common.js",
"engines": {
"node": ">= 6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicolasbeauvais/vue-add-to-calendar.git"
},
"scripts": {
"build": "node config/build.js",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"release": "conventional-github-releaser -p angular && npm publish",
"clean": "rm -rf coverage && rm -rf dist/*.js* && rm ./*.log",
"dev": "webpack-dev-server --quiet --config config/webpack.dev.conf.js --host 0.0.0.0",
"lint": "eslint src test config",
"sauce": "npm run sauce:coolkids && npm run sauce:ie && npm run sauce:mobile",
"sauce:coolkids": "karma start config/karma.sauce.conf.js -- 0",
"sauce:ie": "karma start config/karma.sauce.conf.js -- 1",
"sauce:mobile": "karma start config/karma.sauce.conf.js -- 2",
"test": "npm run lint && npm run test:cover && npm run test:e2e -- --env phantomjs",
"test:cover": "karma start config/karma.cover.conf.js",
"test:coveralls": "karma start config/karma.coveralls.conf.js",
"test:e2e": "npm run build && node test/e2e/runner.js",
"test:unit": "karma start config/karma.unit.conf.js"
},
"dependencies": {
"escope": "^3.6.0"
}
}