forked from cozmo/jsQR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 844 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
{
"name": "jsqr",
"version": "0.2.2",
"description": "QR code detection, extraction, decoding and parsing written as pure JS port of the ZXing library.",
"repository": "https://github.com/cozmo/jsQR",
"main": "./dist/jsQR.js",
"contributors": [
{
"name": "Cosmo Wolfe",
"email": "[email protected]"
},
{
"name": "Jefff Nelson",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"devDependencies": {
"mocha": "^2.3.4",
"ts-loader": "^0.7.2",
"ts-node": "^0.5.4",
"typescript": "^1.7.3",
"webpack": "^1.12.9"
},
"scripts": {
"build": "node ./node_modules/webpack/bin/webpack.js",
"watch": "node ./node_modules/webpack/bin/webpack.js --watch",
"test": "node ./node_modules/mocha/bin/mocha --require ts-node/register ./test/test-*.ts"
}
}