-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "opzjs",
"version": "1.0.1",
"description": "Midi parser for the OP-Z (teenage engineering)",
"scripts": {
"build": "npm run build:opz && npm run build:dist && npm run build:dist:min",
"build:opz": "Make build_opz",
"build:dist": "npm run browserify",
"build:dist:min": "npm run minify",
"build:lib": "babel --config-file ./.lib.babelrc src --out-dir lib",
"browserify": "browserify lib/index.js -o dist/opz.js -s OPZ -g [ babelify --configFile ./.dist.babelrc ]",
"minify": "uglifyjs dist/opz.js -o dist/opz.min.js -c -m"
},
"author": "Nathan Willson <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nbw/opz.git"
},
"dependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/runtime": "^7.12.1",
"js-yaml": "^3.14.0",
"rimraf": "^3.0.2",
"uglify-js": "^3.12.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0"
},
"keywords": [
"op-z",
"opz",
"op1",
"teenage",
"midi",
"sequencer",
"synthesizer"
]
}