-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
65 lines (65 loc) · 2.07 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
{
"name": "zxing-typescript",
"version": "0.1.3",
"description": "TypeScript port of ZXing open-source, multi-format 1D/2D barcode image processing library",
"keywords": [
"zxing-typescript",
"zxing",
"barcode-scanner",
"barcode-reader",
"barcode-generator",
"qr-code"
],
"main": "build-node/core/MultiFormatReader.js",
"scripts": {
"build.node": "tsc",
"build.browser.dist": "webpack -p --env dist",
"build.browser.dev": "webpack --env dev --display-error-details",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"pretest-2": "npm run lint && npm run build.node",
"pretest": "npm run build.node",
"test": "mocha --compilers js:babel-core/register \"build-node/test/core/**/*.js\" --timeout 30000 --colors",
"docs": "npm run build.browser.dist && copyfiles -u 1 build-browser/*.min.js docs/examples/",
"start": "npm run docs && http-server docs",
"autotransform": "node ./autotransform/transform.js"
},
"author": "Adrian Toșcă",
"license": "Apache-2.0",
"bugs": "https://github.com/aleris/zxing-typescript/issues",
"repository": {
"type": "git",
"url": "https://github.com/aleris/zxing-typescript"
},
"dependencies": {
"@types/big.js": "0.0.31",
"@types/text-encoding": "0.0.30",
"big.js": "^3.1.3",
"text-encoding": "^0.6.4",
"typescript": "^2.4.2"
},
"devDependencies": {
"@types/async": "^2.0.40",
"@types/chai": "^4.0.0",
"@types/jimp": "^0.2.1",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.18",
"@types/seedrandom": "^2.4.27",
"@types/sharp": "^0.17.1",
"async": "^2.4.0",
"awesome-typescript-loader": "^3.1.3",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"copyfiles": "^1.2.0",
"mocha": "^3.3.0",
"seedrandom": "^2.4.3",
"sharp": "^0.17.3",
"source-map-loader": "^0.2.1",
"ts-loader": "^2.1.0",
"tslint": "^5.5.0",
"typescript": "^2.3.2",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.6.1"
}
}