This repository has been archived by the owner on Dec 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-native-midi",
"version": "0.0.1",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "npm run test:js && npm run eslint && npm run coverage:codecov",
"eslint": "eslint *.js webmidi test",
"test:js": "cross-env NODE_ENV=test nyc --silent mocha",
"test:js-fast": "mocha",
"coverage:codecov": "nyc report --reporter=text-lcov > coverage.lcov",
"coverage:html": "nyc report --reporter=html"
},
"dependencies": {
"babel-runtime": "^6.9.2",
"core-js": "^2.4.0",
"es6-error": "^3.0.0",
"es6-symbol": "^3.1.0",
"events": "^1.1.1",
"invariant": "^2.2.1",
"react": "15.2.0",
"react-native": "0.28.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-plugin-istanbul": "^1.0.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react-native": "^1.9.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-deep-match": "^1.0.2",
"cross-env": "^2.0.0",
"deep-equal": "^1.0.1",
"eslint": "^3.0.0",
"eslint-config-semistandard": "^6.0.2",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-mocha": "^4.0.0",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^2.5.3",
"mocha-clean": "^1.0.0",
"mockery": "^1.7.0",
"nyc": "^6.6.1",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/motiz88/react-native-midi.git"
},
"license": "MIT",
"author": "Moti Zilberman <[email protected]>",
"bugs": {
"url": "https://github.com/motiz88/react-native-midi/issues"
},
"homepage": "https://github.com/motiz88/react-native-midi#readme",
"keywords": [
"react-native",
"midi"
],
"nyc": {
"include": [
"webmidi/*.js",
"*.js"
],
"exclude": [
"test"
],
"sourceMap": false,
"instrument": false
}
}