-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 867 Bytes
/
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
{
"name": "react-audio",
"version": "0.0.1",
"description": "HTML 5 Audio API in React",
"main": "index.js",
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/chrbala/react-audio.git"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"upload": "npm run build && npm publish",
"test": "tape -r babel-register ./src/**/*.test.js",
"lint": "eslint src"
},
"keywords": [
"audio",
"html5",
"react"
],
"author": "Chris Bala",
"license": "ISC",
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.16.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"eslint": "1.10.3",
"linter": "git+https://github.com/chrbala/linter.git#332fcad",
"tape": "4.4.0"
}
}