-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "euphony.js",
"version": "v0.2.5",
"description": "Sound Communication Library",
"main": "./euphony.js",
"keywords": [
"sound",
"Inaudible frequency",
"communication library"
],
"author": "jbear",
"license": "Apache-2.0",
"scripts": {
"build": "webpack --config webpack.config.js",
"build-dev": "webpack --config webpack.config.devel.js",
"dev": "webpack-dev-server",
"es6": "terser --compress --mangle -- euphony.js > ./dist/euphony.m.min.js"
},
"dependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"core-js": "^3.2.1",
"npm": "^7.24.2",
"regenerator-runtime": "^0.13.3",
"terser": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"core-js": "^3.2.1",
"terser": "^4.3.1",
"webpack": "^5.50.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1"
}
}