-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.58 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.58 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
50
51
52
{
"name": "audiooscillator",
"version": "1.0.0",
"description": "An application to assist recording engineers and audio professionals.",
"main": "app.js",
"scripts": {
"eleventy:serve": "cross-env ELEVENTY_ENV=development eleventy --serve --quiet",
"eleventy:build": "cross-env ELEVENTY_ENV=production eleventy",
"sass:watch": "sass src/scss/:src/_includes/ --watch --color",
"sass:build": "sass src/scss/:src/_includes/ --no-source-map --style=compressed",
"uglify": "uglifyjs 'src/js/lib/app.js' -c -o 'src/js/app.min.js'",
"babel": "./node_modules/.bin/babel 'src/js/app.js' --out-dir 'src/js/lib/'",
"dev": "run-p -l sass:build sass:watch eleventy:serve",
"build": "run-s -l eleventy:build sass:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattdecamp/roomTones.git"
},
"keywords": [
"audio",
"webaudio",
"oscillator",
"recording",
"room",
"testing"
],
"author": {
"name": "Matt DeCamp",
"url": "https://mattdecamp.com",
"email": "matt@mattdecamp.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/mattdecamp/roomTones/issues"
},
"homepage": "https://github.com/mattdecamp/roomTones#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"autoprefixer": "^10.3.1",
"clean-css": "^5.3.2",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss-cli": "^8.3.1",
"sass": "^1.63.2",
"uglify-js": "^3.15.3"
}
}