-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.13 KB
/
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
38
39
40
41
42
43
44
45
{
"name": "react-web-midi",
"version": "1.1.1",
"description": "React Web Midi",
"main": "lib/ReactWebMidi.js",
"author": "Eric David Smith",
"homepage": "https://github.com/erictherobot/react-web-midi",
"repository": {
"type": "git",
"url": "https://github.com/erictherobot/react-web-midi.git"
},
"bugs": {
"url": "https://github.com/erictherobot/react-web-midi/issues"
},
"dependencies": {
"classnames": "^2.1.2"
},
"devDependencies": {
"gulp": "^3.9.0",
"react": "^15.4.2",
"react-component-gulp-tasks": "^0.7.6",
"react-dom": "^15.4.2",
"standard": "*"
},
"peerDependencies": {
"react": "^15.4.2"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"publish:site": "NODE_ENV=production gulp publish:examples",
"release": "NODE_ENV=production gulp release",
"start": "gulp dev",
"test": "echo \"no tests yet\" && exit 0",
"watch": "gulp watch:lib"
},
"keywords": [
"react",
"react-component"
]
}