-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.49 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
{
"name": "ble-midi-parser",
"version": "1.0.1",
"description": "Parse BLE MIDI data into timestamp and MIDI data that can be passed to the MIDI parsing library of your choice.",
"main": "./lib/index.js",
"repository": "https://github.com/soulfresh/ble-midi-parser.git",
"scripts": {
"build": "npm-run-all clean format lint transpile webpack",
"clean": "rimraf build/* coverage/ lib/",
"format": "prettier --write --single-quote --parser 'flow' 'src/**/*.js'",
"lint": "eslint .",
"prepublish": "npm run build",
"start": "npm-run-all webpack:dev",
"test": "jest src/*",
"transpile": "babel -d lib src",
"webpack": "webpack",
"webpack:dev": "webpack-dev-server --hot --inline"
},
"keywords": [
"BLE",
"MIDI"
],
"author": "soulfresh",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.3.2",
"babel-preset-env": "^1.1.10",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "^3.1.4",
"eslint": "^3.16.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.0",
"html-webpack-plugin": "^2.28.0",
"immutable": "^3.8.1",
"jest": "^19.0.2",
"npm-run-all": "^4.0.2",
"prettier": "^0.19.0",
"reselect": "^2.5.4",
"rimraf": "^2.6.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}