@dragonaxe/templates.wasm-node-wrapper
Version:
A template for npm packages written in TypeScript
68 lines (67 loc) • 2.14 kB
JSON
{
"name": "@dragonaxe/templates.wasm-node-wrapper",
"version": "1.0.1",
"description": "A template for npm packages written in TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint lib/**/*.{js,ts,tsx}",
"test": "jest",
"test:watch": "jest --watchAll",
"copy-readme": "copyfiles readme.md dist",
"copy-wasm-artifacts": "copyfiles .wasm/** dist",
"build": "npm run copy-readme && npm run copy-wasm-artifacts && tsc --project tsconfig.json",
"watch": "tsc -w",
"start": "npm link && nodemon",
"semantic-release": "semantic-release",
"semantic-release:dry": "semantic-release --dry-run --debug"
},
"repository": {
"type": "git",
"url": "https://github.com/DragonAxe01/wasm-wrappers"
},
"keywords": [
"TypeScript",
"Package",
"Starter",
"Template"
],
"author": {
"name": "DragonAxe",
"email": "info@dragonaxe.io"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.6",
"@types/jest": "26.0.15",
"@types/node": "12.12.20",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"esbuild": "0.15.11",
"eslint": "^7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.3.0",
"jest": "26.6.3",
"nodemon": "2.0.6",
"prettier": "2.2.0",
"semantic-release": "19.0.5",
"ts-jest": "26.4.4",
"ts-node": "^10.9.1"
},
"dependencies": {
"@types/copyfiles": "^2.4.1",
"@types/dotenv": "^8.2.0",
"@types/dotenv-safe": "^8.1.2",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.3",
"dotenv-safe": "^8.2.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}