forked from mobstac/mobstac-awesome-qr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
{
"name": "mobstac-awesome-qr",
"version": "1.1.1",
"description": "MobStac Awesome QR code library",
"homepage": "https://github.com/mobstac/mobstac-awesome-qr",
"bugs": "https://github.com/mobstac/mobstac-awesome-qr/issues",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "nyc mocha",
"build": "tsc && webpack",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"keywords": [],
"author": "MobStac Inc",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"source-map-support": "^0.5.11",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@types/node": "^11.13.0",
"canvas": "^2.4.1"
}
}