-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.76 KB
/
package.json
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
47
48
49
50
51
52
53
{
"name": "mongoose-truck",
"version": "1.5.7",
"description": "Node.js library for handling CRUD operations for different mongodb databases.",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "npx @babel/node",
"build": "npx babel src --out-dir build --copy-files --ignore '**/*.test.js'",
"dev": "npx babel src --out-dir build --copy-files --ignore '**/*.test.js' --watch",
"minor": "npm version minor --force",
"patch": "npm version patch --force",
"major": "npm version major --force",
"publish:npm": "npm pkg set name=mongoose-truck && npm publish --access public --registry https://registry.npmjs.org --force",
"publish:github": "npm pkg set name=@cangokceaslan/mongoose-truck && npm publish --access public --force --registry https://npm.pkg.github.com/@cangokceaslan/mongoose-truck && npm pkg set npm pkg set name=mongoose-truck",
"publish": "npm run publish:npm && npm run publish:github",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cangokceaslan/mongoose-truck.git"
},
"publishConfig": {
"access": "public"
},
"publisher": "Can Gökçeaslan",
"keywords": [
"mongodb",
"mongoose",
"crud",
"mongodb",
"crud",
"mongoose",
"crud"
],
"private": false,
"author": "Can Gökçeaslan",
"license": "ISC",
"bugs": {
"url": "https://github.com/cangokceaslan/mongoose-truck/issues"
},
"homepage": "https://github.com/cangokceaslan/mongoose-truck#readme",
"dependencies": {
"mongoose": "^6.1.6"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/register": "^7.16.9"
}
}