-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.48 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@mob-on/node-lib-template",
"license": "MIT",
"version": "1.0.0",
"description": "A nodejs template library",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"./dist",
"./src"
],
"scripts": {
"build": "rollup -c",
"pub": "yarn build && yarn pubNpm && yarn pubGithub",
"pubNpm": "npm publish --@mob-on:registry=https://registry.npmjs.org",
"pubGithub": "npm publish --@mob-on:registry=https://npm.pkg.github.com",
"pubNpmPublic": "npm publish --@mob-on:registry=https://registry.npmjs.org --access public",
"pubGithubPublic": "npm publish --@mob-on:registry=https://npm.pkg.github.com --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mob-on/node-lib-template.git"
},
"bugs": {
"url": "https://github.com/mob-on/node-lib-template/issues"
},
"homepage": "https://github.com/mob-on/node-lib-template#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-json": "^5.0.1",
"@types/node": "^18.11.9",
"rollup": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.9.3"
},
"dependencies": {},
"packageManager": "[email protected]"
}