forked from no23reason/react-qr-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.87 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-qr-svg-logo",
"description": "React.js component for SVG QR codes with logo in the middle",
"author": "Michał Nykiel",
"user": "marszall87",
"version": "0.0.1",
"scripts": {
"start": "webpack-dev-server",
"test": "npm run test:lint && npm run test:js && npm run test:ts",
"test:js": "jest --coverage",
"test:tdd": "jest --watch",
"test:lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --ignore-pattern dist --ignore-pattern docs --cache",
"test:ts": "cd tests/typescript && rimraf out && rimraf typings && typings install && tsc && rimraf out && rimraf typings",
"make-docs": "webpack",
"dist": "rimraf ./dist-modules && babel ./src --out-dir ./dist-modules",
"prepublish": "npm run dist",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"main": "dist-modules",
"typings": "./index.d.ts",
"dependencies": {
"prop-types": "^15.5.8",
"qr.js": "0.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.2",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.9.0",
"clean-webpack-plugin": "^0.1.9",
"css-loader": "^0.28.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.1.0",
"eslint-loader": "^1.8.0",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^2.0.0-rc.2",
"file-loader": "^0.11.1",
"git-prepush-hook": "^1.0.1",
"highlight.js": "^9.4.0",
"html-webpack-plugin": "^2.21.0",
"html-webpack-remark-plugin": "^0.1.0",
"jest": "^20.0.3",
"json-loader": "^0.5.4",
"purecss": "^1.0.0",
"react": "~15.6.1",
"react-dom": "~15.6.1",
"react-ghfork": "^0.3.3",
"react-test-renderer": "~15.6.1",
"rimraf": "^2.5.3",
"semantic-release": "^6.3.2",
"style-loader": "^0.18.1",
"typescript": "~2.3.1",
"typings": "^2.0.0",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.0",
"webpack-merge": "^4.0.0"
},
"peerDependencies": {
"react": ">= 0.11.2 < 16.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",
"pre-push": [
"test:js",
"test:lint"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}