forked from prayerslayer/zxing-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 962 Bytes
/
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
{
"name": "zxing-wasm",
"version": "0.0.1",
"description": "zxing-cpp in wasm",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"build-zxing": "cd zxing && ./build.sh",
"build-webpack": "webpack",
"docs": "npm run build-webpack && cp -r dist/* docs/",
"build": "npm run clean && mkdir dist && npm run build-zxing && npm run build-webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/prayerslayer/zxing-wasm.git"
},
"author": "Nikolaus Piccolotto <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prayerslayer/zxing-wasm/issues"
},
"homepage": "https://github.com/prayerslayer/zxing-wasm#readme",
"devDependencies": {
"exports-loader": "^0.6.4",
"file-loader": "^1.1.6",
"uglifyjs-webpack-plugin": "^1.1.5",
"wasm-loader": "^1.1.0",
"webpack": "^3.10.0"
}
}