-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "webcomponent-qr-code",
"version": "1.3.0",
"description": "Web Component for generating QR codes",
"main": "dist/index.js",
"scripts": {
"start": "concurrently \"npm run start-watch\" \"npm run start-server\" ",
"start-watch": "webpack --watch",
"start-server": "http-server",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"preversion": "npm run build && git add dist",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/educastellano/qr-code.git"
},
"keywords": [
"qr",
"qrcode",
"qr-code",
"webcomponent",
"custom-element"
],
"author": "Eduard Castellano",
"license": "MIT",
"bugs": {
"url": "https://github.com/educastellano/qr-code/issues"
},
"homepage": "https://github.com/educastellano/qr-code",
"dependencies": {
"qrjs": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"http-server": "^0.11.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}