-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.77 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.77 KB
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
{
"name": "@sensorfactdev/qr-code-scanner",
"version": "1.0.10",
"description": "Scan QR codes using the rear camera of a phone inside React",
"repository": {
"type": "git",
"url": "https://github.com/Sensorfactdev/qr-code-scanner"
},
"author": "Ramon Gebben <ramon@sensorfact.nl>",
"license": "MIT",
"scripts": {
"prepublish": "npm run build",
"start": "npm run storybook",
"build": ". ./.scripts/prepublish.sh",
"lint": "eslint src",
"test": "jest --coverage --silent=false",
"storybook": "start-storybook -p 9010",
"publish-storybook": "bash .scripts/publish_storybook.sh"
},
"jest-junit": {
"suiteName": "QR code scanner tests",
"output": "./reports/junit.xml"
},
"devDependencies": {
"@storybook/addon-info": "^3.2.15",
"@storybook/addon-options": "^3.2.15",
"@storybook/react": "3.2.15",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.13.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react-app": "^0.2.1",
"babel-runtime": "^6.11.6",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"git-url-parse": "^6.0.1",
"jest": "^21.2.1",
"jest-junit": "^3.1.0",
"prop-types": "^15.6.0",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"react-test-renderer": "^16.1.0"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"raf": "^3.4.0",
"qrcode-reader": "^1.0.4",
"styled-components": "^2.2.3"
},
"main": "dist/index.js",
"engines": {
"npm": "^3.0.0"
}
}