This repository has been archived by the owner on May 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
84 lines (84 loc) · 2.89 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
76
77
78
79
80
81
82
83
84
{
"name": "react-qr-svg",
"description": "React.js component for SVG QR codes",
"author": "Dan Homola",
"user": "no23reason",
"version": "0.0.0-semantic-release",
"scripts": {
"dist": "rimraf ./dist-modules && babel ./src --out-dir ./dist-modules",
"gh-pages": "npm run gh-pages:build && npm run gh-pages:deploy",
"gh-pages:build": "catalog build docs -u ./",
"gh-pages:deploy": "gh-pages -d docs/build",
"prepublishOnly": "npm run dist",
"prepush": "npm run test:lint && npm run test:js",
"precommit": "pretty-quick --staged",
"start": "catalog start docs",
"test:js": "jest --coverage",
"test:lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --ignore-pattern dist --ignore-pattern docs --cache",
"test:tdd": "jest --watch",
"test:ts": "typings-tester --config ./tests/typescript/tsconfig.json ./tests/typescript/index.tsx",
"test": "npm run test:lint && npm run test:js && npm run test:ts"
},
"main": "dist-modules",
"typings": "./index.d.ts",
"dependencies": {
"prop-types": "^15.5.8",
"qr.js": "0.0.0"
},
"devDependencies": {
"@types/react": "^17.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^23.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"catalog": "^3.2.4",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^3.1.0",
"jest": "^23.6.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"purecss": "^2.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-github-corner": "^2.1.0",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.0",
"semantic-release": "^17.0.4",
"typescript": "^3.0.3",
"typings-tester": "^0.3.2"
},
"peerDependencies": {
"react": ">= 0.11.2 < 18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/no23reason/react-qr-svg.git"
},
"homepage": "https://no23reason.github.io/react-qr-svg/",
"bugs": {
"url": "https://github.com/no23reason/react-qr-svg/issues"
},
"keywords": [
"react",
"reactjs",
"qr-code",
"qr",
"svg"
],
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}