1 | {
|
2 | "name": "@bbc/react-transcript-editor",
|
3 | "description": "A React component to make transcribing audio and video easier and faster.",
|
4 | "version": "0.2.3",
|
5 | "keywords": [
|
6 | "transcript",
|
7 | "transcriptions",
|
8 | "react",
|
9 | "speech",
|
10 | "speech to text",
|
11 | "textAV"
|
12 | ],
|
13 | "main": "dist/index.js",
|
14 | "module": "dist/index.js",
|
15 | "files": [
|
16 | "dist"
|
17 | ],
|
18 | "scripts": {
|
19 | "start": "PORT=3006 react-scripts start",
|
20 | "test": "react-scripts test --env=jsdom",
|
21 | "eject": "react-scripts eject",
|
22 | "build:example": "react-scripts build",
|
23 | "build:component": "rimraf dist && NODE_ENV=production babel src/lib --out-dir dist --ignore '**/*__tests__,**/*.spec.js,**/*.test.js,**/*__snapshots__,**/*.sample.js,**/*.sample.json,/**/example-usage.js' --copy-files",
|
24 | "deploy:ghpages": "npm run build:example && gh-pages -d build",
|
25 | "test-ci": "CI=true react-scripts test --env=jsdom --verbose",
|
26 | "lint": "eslint --ignore-path .eslintignore .",
|
27 | "lint-fix": "eslint --ignore-path .eslintignore . --fix",
|
28 | "publish:public": "npm run build:component && npm publish --access public"
|
29 | },
|
30 | "devDependencies": {
|
31 | "@babel/cli": "^7.1.2",
|
32 | "@babel/core": "^7.1.2",
|
33 | "@babel/plugin-proposal-class-properties": "^7.1.0",
|
34 | "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
|
35 | "@babel/preset-react": "^7.0.0",
|
36 | "babel-plugin-transform-object-rest-spread": "^6.26.0",
|
37 | "enzyme": "^3.7.0",
|
38 | "eslint": "5.6.0",
|
39 | "eslint-config-airbnb-base": "^13.1.0",
|
40 | "eslint-plugin-import": "^2.14.0",
|
41 | "eslint-plugin-react": "^7.11.1",
|
42 | "gh-pages": "^2.0.1",
|
43 | "husky": "^1.1.3",
|
44 | "react-scripts": "^2.1.2",
|
45 | "react-testing-library": "^5.2.3",
|
46 | "regenerator-runtime": "^0.12.1",
|
47 | "rimraf": "^2.6.2"
|
48 | },
|
49 | "contributors": [
|
50 | {
|
51 | "name": "Pietro Passarelli",
|
52 | "email": "pietro.passarelli@bbc.co.uk",
|
53 | "url": "https://github.com/pietrop"
|
54 | },
|
55 | {
|
56 | "name": "James Dooley",
|
57 | "url": "https://github.com/jamesdools"
|
58 | }
|
59 | ],
|
60 | "license": "MIT",
|
61 | "bugs": {
|
62 | "url": "https://github.com/bbc/react-transcript-editor/issues"
|
63 | },
|
64 | "homepage": ".",
|
65 | "repository": {
|
66 | "type": "git",
|
67 | "url": "git+https://github.com/bbc/react-transcript-editor.git"
|
68 | },
|
69 | "browserslist": [
|
70 | ">0.2%",
|
71 | "not dead",
|
72 | "not ie <= 11",
|
73 | "not op_mini all"
|
74 | ],
|
75 | "dependencies": {
|
76 | "@fortawesome/fontawesome-svg-core": "^1.2.12",
|
77 | "@fortawesome/free-solid-svg-icons": "^5.6.3",
|
78 | "@fortawesome/react-fontawesome": "^0.1.3",
|
79 | "babel-polyfill": "^6.26.0",
|
80 | "draft-js": "^0.10.5",
|
81 | "mousetrap": "1.5.2",
|
82 | "prop-types": "^15.6.2",
|
83 | "react": "^16.6.0",
|
84 | "react-dom": "^16.6.0",
|
85 | "react-keyboard-shortcuts": "^1.1.3",
|
86 | "react-simple-tooltip": "^2.3.3"
|
87 | }
|
88 | }
|