forked from mjhasbach/pixi-piano-roll
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.55 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
{
"name": "react-piano-roll",
"version": "0.1.3",
"description": "React piano roll component based on mjhasbach/pixi-piano-roll",
"main": "dist/PianoRoll.js",
"module": "dist/PianoRoll.js",
"license": "MIT",
"homepage": "https://github.com/dpren/react-piano-roll",
"keywords": [
"react",
"piano",
"roll",
"midi",
"grid",
"note",
"music"
],
"repository": "dpren/react-piano-roll",
"author": {
"name": "Darren Prentice",
"url": "https://github.com/dpren"
},
"contributors": [
{
"name": "Matthew Hasbach",
"email": "[email protected]",
"url": "https://github.com/mjhasbach"
}
],
"dependencies": {
"musical-scale-colors": "2.0.1",
"pixi.js": "3.0.7",
"teoria": "2.1.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"babel-preset-react-app": "^9.0.0",
"cp-cli": "^2.0.0",
"cross-env": "^5.2.0",
"del-cli": "^2.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "^3.0.1"
},
"files": [
"dist/*"
],
"scripts": {
"build": "del-cli dist/* && npm run build-dist",
"build-dist": "cross-env NODE_ENV=production babel lib --out-dir dist",
"cp-dist2test": "del-cli test/src/dist -f && cp-cli dist test/src/dist",
"build-test": "npm run build && npm run cp-dist2test",
"test": "npm run build-test && cd test && npm run start"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}