gpu.js/package.json
Robert Plummer 5605504d92 fix: Upgrade gpu-mock.js to latest 100% code coverage tested
fix: Added tests for building kernels with "dev" mode
feat: Added a `.toArray()` method on `Input`, for usage with "dev" mode
fix: `Input.size` to reflect exactly what was sent in, rather than make up dimensions that aren't there
fix: `KernelArgument.dimensions` to fill in missing dimensions from size
fix: Only safe declarations when using a literal
2019-07-11 13:18:33 -04:00

63 lines
1.4 KiB
JSON

{
"name": "gpu.js",
"version": "2.0.0-rc.21",
"description": "GPU Accelerated JavaScript",
"engines": {
"node": ">=10.0.0"
},
"main": "./src/index.js",
"files": [
"src",
"dist"
],
"unpkg": "./dist/gpu-browser.min.js",
"jsdelivr": "./dist/gpu-browser.min.js",
"directories": {
"doc": "doc",
"test": "test"
},
"dependencies": {
"acorn": "^5.1.1",
"gl": "^4.3.3",
"gl-wiretap": "^0.6.0",
"gpu-mock.js": "^1.1.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browser-sync": "^2.26.3",
"browserify": "^16.2.3",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.0",
"gulp-header": "^1.7.1",
"gulp-jsbeautifier": "^2.1.0",
"gulp-rename": "^1.2.2",
"gulp-strip-comments": "^2.4.5",
"merge-stream": "^1.0.1",
"qunit": "^2.9.1",
"sinon": "^7.3.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"test": "qunit",
"setup": "npm i -g gulp-cli",
"build-docs": "./node_modules/.bin/jsdoc -c jsdoc.json src -r -d doc --debug && gulp injectCSS",
"make": "gulp build && gulp beautify && gulp minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpujs/gpu.js.git"
},
"keywords": [
"gpgpu",
"webgl"
],
"author": "The gpu.js Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/gpujs/gpu.js/issues"
},
"homepage": "http://gpu.rocks/",
"typings": "./src/index.d.ts"
}