UNPKG

micrograd

Version:
68 lines (67 loc) 2.09 kB
{ "name": "micrograd", "version": "0.1.1", "description": "A porting of Karpathy's Micrograd to JS", "bin": "demo/demo.ts", "main": "src/index.ts", "moduleType": [ "amd", "es6", "globals", "node", "yui" ], "scripts": { "test": "jest --coverage", "build": "tsc -p tsconfig.json && browserify dist/index.js --standalone microgradjs -o dist/microgradjs.js", "lint": "node_modules/.bin/eslint -c .eslintrc.js --ext .js,.ts .", "lint:fix": "node_modules/.bin/eslint -c .eslintrc.js --fix --ext .js,.ts .", "check:clean-workspace-after-install": "git diff --quiet --exit-code", "check:format": "prettier --list-different \"./**/*.{ts,js,json,md}\"", "prettier:fix": "prettier --write \"./**/*.{ts,js,json,md}\"", "clean": "rm -rf dist/ coverage/", "check:spelling": "cspell --config=.cspell.json \"**/*.{md,ts,js}\"" }, "repository": { "type": "git", "url": "git+https://github.com/marcofavorito/micrograd-js.git" }, "keywords": [ "micrograd", "machine-learning", "neural-networks", "automatic-differentiation", "gradient-descent" ], "author": "Marco Favorito <marco.favorito@gmail.com> (https://marcofavorito.github.io/)", "license": "MIT", "bugs": { "url": "https://github.com/marcofavorito/micrograd-js/issues" }, "homepage": "https://github.com/marcofavorito/micrograd-js#readme", "files": [ "src" ], "dependencies": {}, "devDependencies": { "@babel/preset-typescript": "^7.10.4", "@types/jest": "^26.0.4", "@types/node": "^14.0.23", "@typescript-eslint/eslint-plugin": "^3.6.1", "@typescript-eslint/parser": "^3.6.1", "browserify": "^16.5.1", "codecov": "^3.7.1", "cspell": "^4.0.63", "eslint": "^7.4.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-jest": "^23.18.0", "eslint-plugin-jsdoc": "^29.2.0", "eslint-plugin-prettier": "^3.1.4", "jest": "^26.1.0", "jsdoc": "^3.6.4", "prettier": "^2.0.5", "rollup": "^2.22.0", "ts-jest": "^26.1.2", "typescript": "^3.9.6" } }