-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
87 lines (87 loc) · 2.73 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
{
"name": "vue-dom-portal",
"description": "An escape hatch directive for DOM Elements in Vue.js components.",
"version": "0.1.6",
"author": {
"name": "Caleb Roseland",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/calebroseland/vue-dom-portal/issues"
},
"devDependencies": {
"babel-core": "^6.9.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-espower": "^2.0.0",
"babel-preset-es2015": "^6.9.0",
"buble": "^0.14.0",
"conventional-changelog-cli": "^1.1.1",
"conventional-github-releaser": "1.1.3",
"eslint": "^3.10.1",
"eslint-config-vue": "^2.0.1",
"eslint-plugin-vue": "^1.0.0",
"eslint-loader": "^1.3.0",
"gitbook-cli": "^2.3.0",
"html-webpack-plugin": "^2.19.0",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"json-loader": "^0.5.4",
"karma": "^1.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.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-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"phantomjs-prebuilt": "^2.1.1",
"power-assert": "^1.2.0",
"rollup": "^0.36.1",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-replace": "^1.1.0",
"uglify-js": "^2.6.2",
"vue": "^2.1.3",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.14.1"
},
"files": [
"dist/vue-dom-portal.js",
"dist/vue-dom-portal.min.js",
"dist/vue-dom-portal.common.js",
"src"
],
"homepage": "https://github.com/calebroseland/vue-dom-portal#readme",
"jsnext:main": "src/index.js",
"keywords": [
"plugin",
"vue",
"vuejs"
],
"license": "MIT",
"main": "dist/vue-dom-portal.common.js",
"engines": {
"node": ">= 6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calebroseland/vue-dom-portal.git"
},
"scripts": {
"build": "node config/build.js && npm run docs:build",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"release": "conventional-github-releaser -p angular",
"clean": "rm -rf coverage && rm -rf dist/*.js* && rm ./*.log",
"dev": "webpack-dev-server --quiet --config config/webpack.dev.conf.js --host 127.0.0.1",
"docs": "gitbook serve ./gitbook ./docs",
"docs:build": "gitbook build ./gitbook ./docs",
"docs:install": "gitbook install ./gitbook",
"lint": "eslint src test config",
"test": "npm run lint && npm run test:cover",
"test:cover": "karma start config/karma.cover.conf.js",
"test:unit": "karma start config/karma.unit.conf.js"
}
}