-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
75 lines (75 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "symbol-qr-library",
"version": "0.14.3",
"description": "Symbol library to handle QR Codes",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"braces": ">=2.3.1",
"canvas": "^2.8.0",
"crypto-js": "^4.1.1",
"open": "^8.4.0",
"qrcode": "^1.5.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.5",
"@types/qrcode": "^1.4.2",
"async": "^3.2.2",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-preset-es2015": "^6.24.1",
"browserify": "^17.0.0",
"bufferutil": "4.0.5",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"rxjs": "^7.5.1",
"symbol-hd-wallets": "^0.14.2",
"symbol-sdk": "^1.0.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.10",
"typemoq": "^2.1.0",
"typescript": "^4.5.4",
"uglifyify": "^5.0.2",
"utf-8-validate": "^5.0.7",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"scripts": {
"pretest": "npm run build",
"build": "rm -rf dist/ && tsc",
"build:browser": "npm run build && webpack",
"lint:all": "tslint --project .",
"test": "mocha --ui bdd --recursive ./dist/test",
"test:cov": "nyc --reporter=lcov --reporter=text-summary npm t",
"test:coveralls": "npm run test:cov | coveralls",
"coveralls-report": "cat ./coverage/lcov.info | coveralls",
"version": "echo $npm_package_version",
"doc": "typedoc --entryPointStrategy expand --out \"ts-docs/$(npm run version --silent)\" src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nemtech/symbol-qr-library.git"
},
"author": "Grégory Saive from Using Blockchain Ltd <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nemtech/symbol-qr-library/issues"
},
"homepage": "https://github.com/nemtech/symbol-qr-library#readme",
"nyc": {
"exclude": [
"**/*.spec.js"
]
}
}