-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.76 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
{
"name": "transcript-editor",
"version": "0.5.0",
"description": "Editor component for transcripts. Allows correction of errors produced by the speech recognition process while maintaining time-alignment of words.",
"main": "lib/index.js",
"dependencies": {
"draft-js": "^0.10.5",
"immutable": "^3.8.2",
"prop-types": "^15.6.0",
"transcript-model": "^0.4.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.17.0",
"babel-jest": "^16.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"gh-pages": "^1.1.0",
"jest": "^22.3.0",
"parcel-bundler": "^1.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-rc || ^16.0.0-rc || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0-rc || ^16.0.0-rc || ^16.0.0"
},
"scripts": {
"start": "parcel demo-app/index.html",
"predeploy": "parcel build demo-app/index.html --public-url ./",
"deploy": "gh-pages -d dist",
"prepare": "babel -d lib --copy-files --ignore '**/__tests__' src/",
"test": "jest src/",
"coverage": "npm run test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbc/transcript-editor.git"
},
"author": "Alex Norton <alex.norton@bbc.co.uk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bbc/transcript-editor/issues"
},
"homepage": "https://github.com/bbc/transcript-editor#readme",
"files": [
"lib/"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
}
}