-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.52 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
{
"name": "building-a-reusable-vue-web-component",
"version": "0.1.0",
"description": "How to build a reusable Vue.js web-component",
"main": "dist/my-component.min.js",
"scripts": {
"dev": "npm-run-all --parallel start testwi",
"start": "webpack-dev-server --config webpack.config.js --env.NODE_ENV=development",
"test": "mocha-webpack --require src/test-setup.js \"src/**/*.test.js\" --check-leaks --webpack-env.NODE_ENV=testing",
"testw": "mocha-webpack --require src/test-setup.js \"src/**/*.test.js\" --check-leaks --webpack-env.NODE_ENV=testing --watch",
"testwi": "mocha-webpack --require src/test-setup.js \"src/**/*.test.js\" --check-leaks --webpack-env.NODE_ENV=testing --watch --interactive=false",
"lint": "eslint --ext .js,.vue src",
"build": "npm run build:slim && npm run build:standalone && opn src/index-prods.html",
"build:slim": "webpack --config webpack.config.js --env.NODE_ENV=production",
"build:standalone": "webpack --config webpack.config.js --env.NODE_ENV=production --env.standalone=true"
},
"keywords": [
"vue",
"component",
"webcomponent",
"build",
"splitting",
"standalone"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stcruy/building-a-reusable-vue-web-component"
},
"author": "Steven Vercruysse (http://stcruy.com)",
"license": "MIT",
"homepage": "https://github.com/stcruy/building-a-reusable-vue-web-component#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@vue/test-utils": "^1.0.0-beta.25",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"document-register-element": "^1.11.1",
"eslint": "^5.6.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^4.7.1",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^12.2.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"npm-run-all": "^4.1.3",
"null-loader": "^0.1.1",
"opn-cli": "^3.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.6.0",
"stylelint-config-recess-order": "^2.0.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"uglifyjs-webpack-plugin": "^2.0.1",
"vue": "^2.5.17",
"vue-custom-element": "^3.2.5",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-node-externals": "^1.7.2"
}
}