-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 894 Bytes
/
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
{
"name": "mercury-examples",
"version": "1.0.5",
"description": "Package with examples and tutorials for the Mercury language",
"main": "./dist/mercury-examples.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"data": "node build.js",
"dist": "mkdir dist && browserify -t brfs --standalone MercuryTutorialsExamples index.js | uglifyjs > dist/mercury-examples.js",
"build": "npm run clean && npm run data && npm run dist"
},
"keywords": [
"mercury",
"live",
"coding",
"creative",
"coding",
"algorithmic",
"composition",
"electronic",
"music",
"audiovisual"
],
"author": "Timo Hoogland",
"license": "ISC",
"devDependencies": {
"brfs": "^2.0.2",
"browserify": "^17.0.0",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"uglify-js": "^3.17.4"
}
}