kopia lustrzana https://github.com/m1el/woscope
50 wiersze
1.1 KiB
JSON
50 wiersze
1.1 KiB
JSON
{
|
|
"name": "woscope",
|
|
"version": "0.2.2",
|
|
"description": "oscilloscope emulator",
|
|
"homepage": "https://m1el.github.io/woscope/",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"keywords": [
|
|
"oscilloscope",
|
|
"webgl"
|
|
],
|
|
"author": "m1el",
|
|
"contributors": [
|
|
"cvn"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/m1el/woscope.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/m1el/woscope/issues"
|
|
},
|
|
"scripts": {
|
|
"demo": "budo demo/:dist/demo.js --live --open",
|
|
"build": "jshint *.js demo/*.js && browserify demo/ > dist/demo.js && browserify index.js --standalone woscope -p [browserify-banner --file banner.txt] > dist/woscope.js"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
"glslify",
|
|
[
|
|
"babelify",
|
|
{
|
|
"presets": [
|
|
"es2015"
|
|
]
|
|
}
|
|
]
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"babel-preset-es2015": "^6.1.2",
|
|
"babelify": "^7.2.0",
|
|
"browserify": "^12.0.1",
|
|
"browserify-banner": "^1.0.3",
|
|
"budo": "^9.4.5",
|
|
"glslify": "^2.3.1",
|
|
"jshint": "^2.8.0"
|
|
}
|
|
}
|