CoolFace
Apppublic

thesuryash/ASCII-GLB-Viewer

sourceHugging Facemitupdated 2mo agoView on Hugging Face
0likes
package.json82 linesDownload Raw Back to dat.gui-master
1{2  "name": "dat.gui",3  "version": "0.7.9",4  "description": "A lightweight graphical user interface for changing variables in JavaScript.",5  "main": "build/dat.gui.js",6  "module": "build/dat.gui.module.js",7  "directories": {8    "test": "tests"9  },10  "scripts": {11    "dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c -w -m inline\" \"serve --listen 8080\"",12    "build": "rollup -c && rollup -c rollup.config.min.js",13    "build-docs": "jsdoc2md -f src/dat/gui/GUI.js src/dat/controllers/Controller.js src/dat/controllers/NumberController.js | replace-between --target API.md --token API",14    "lint": "eslint src",15    "preversion": "npm run lint",16    "version": "npm run build && git add -A build",17    "postversion": "git push && git push --tags && npm publish"18  },19  "repository": {20    "type": "git",21    "url": "git+https://github.com/dataarts/dat.gui.git"22  },23  "author": "Data Arts Team, Google",24  "license": "Apache-2.0",25  "bugs": {26    "url": "https://github.com/dataarts/dat.gui/issues"27  },28  "homepage": "https://github.com/dataarts/dat.gui#readme",29  "devDependencies": {30    "babel-core": "^6.26.3",31    "babel-plugin-external-helpers": "^6.22.0",32    "babel-preset-env": "^1.7.0",33    "concurrently": "^3.5.1",34    "eslint": "^6.8.0",35    "eslint-config-airbnb-base": "^14.1.0",36    "eslint-loader": "^4.0.0",37    "eslint-plugin-import": "^2.20.2",38    "extend": "^3.0.2",39    "jsdoc-to-markdown": "^5.0.3",40    "replace-between": "0.0.8",41    "rollup": "^0.54.1",42    "rollup-plugin-babel": "^3.0.4",43    "rollup-plugin-cleanup": "^3.1.1",44    "rollup-plugin-node-resolve": "^3.3.0",45    "rollup-plugin-sass": "^0.6.1",46    "rollup-plugin-uglify": "^2.0.1",47    "serve": "^11.3.0"48  },49  "eslintConfig": {50    "extends": "airbnb-base",51    "rules": {52      "comma-dangle": 0,53      "func-names": 0,54      "no-alert": 0,55      "no-console": 1,56      "no-use-before-define": 0,57      "prefer-rest-params": 0,58      "prefer-template": 0,59      "no-mixed-operators": 0,60      "no-undef": 0,61      "no-underscore-dangle": 0,62      "prefer-arrow-callback": 0,63      "space-before-function-paren": 0,64      "global-require": 0,65      "object-shorthand": 0,66      "max-len": 0,67      "no-param-reassign": 0,68      "consistent-return": 0,69      "no-restricted-syntax": 0,70      "no-bitwise": 0,71      "no-plusplus": 0,72      "operator-linebreak": 0,73      "no-else-return": 0,74      "prefer-destructuring": 0,75      "no-multi-assign": 0,76      "no-restricted-properties": 0,77      "no-return-assign": 0,78      "no-restricted-globals": 079    }80  }81}82