-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "OPZStarter",
"version": "1.0.0",
"description": "OP-Z Starter",
"main": "index.js",
"scripts": {
"watch": "watchify lib/index.js -o src/script.js",
"build": "npm run build:dist && npm run build:dist:min",
"build:dist": "npm run browserify",
"build:dist:min": "npm run minify",
"browserify": "browserify lib/index.js -o src/script.js -g [ babelify --configFile ./.dist.babelrc ]",
"minify": "uglifyjs src/script.js -o src/script.min.js -c -m"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"keywords": [
"teenage",
"engineering",
"midi",
"op-z"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0"
},
"dependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/runtime": "^7.12.1",
"js-yaml": "^3.14.0",
"opzjs": "^1.0.1",
"rimraf": "^3.0.2",
"uglify-js": "^3.12.2",
"watchify": "^3.11.1"
}
}