@rshaker/smoketest-npm
Version:
A minimal project demonstrating how to bundle Typescript code for distribution as a node package.
40 lines (39 loc) • 1.04 kB
JSON
{
"name": "@rshaker/smoketest-npm",
"version": "1.2.1",
"description": "A minimal project demonstrating how to bundle Typescript code for distribution as a node package.",
"license": "MIT",
"author": {
"name": "Ron Shaker",
"email": "rshaker@gmail.com",
"url": "https://github.com/rshaker"
},
"bugs": {
"url": "https://github.com/rshaker/smoketest-npm/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rshaker/smoketest-npm.git"
},
"keywords": [
"smoketest",
"webpack",
"typescript",
"node",
"npm",
"umd"
],
"main": "dist/bundle.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "webpack",
"start": "node dist/bundle.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"ts-loader": "^9.5.1",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
}
}