-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "react-transcript-player",
"version": "1.4.0",
"description": "React component for playing audio with a synced transcript",
"repository": {
"type": "git",
"url": "https://github.com/contours/react-transcript-player.git"
},
"main": "lib/player.js",
"keywords": [
"react-component",
"audio",
"transcript"
],
"author": "Ryan Shaw <ryanshaw@unc.edu>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-plugin-transform-runtime": "^6.1.2",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babel-preset-stage-1": "^6.1.2",
"eslint": "^1.9.0",
"eslint-plugin-react": "^3.8.0",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"watchy": "^0.6.5"
},
"scripts": {
"lint": "eslint --ext .jsx src",
"transpile": "babel src -d lib --source-maps inline",
"build": "npm -s run lint && npm -s run transpile",
"pretest": "npm -s run build && babel test -d lib/test",
"test": "tape lib/test/*.js | tap-spec",
"build-watch": "watchy -s -w src -i '/#|/flycheck_' -- npm -s run build",
"prepublish": "babel src -d lib",
"preversion": "npm test"
},
"dependencies": {
"immutable": "^3.7.5",
"interval-tree-1d": "^1.0.3"
},
"peerDependencies": {
"babel-runtime": "^6.0.14",
"react": "^0.14.5",
"react-dom": "^0.14.5"
}
}