-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·76 lines (76 loc) · 1.69 KB
/
package.json
File metadata and controls
executable file
·76 lines (76 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@techsmpl/cli",
"version": "1.4.1",
"description": "This is a CLI for SMPL Team",
"main": "./bin/cli-prod.js",
"private": false,
"files": [
"build",
"src",
"cli-prod.js",
"cli-dev.js",
"package.json",
"jsconfig.json",
".babelrc",
".npmignore",
"package-lock.json"
],
"bin": {
"techsmpl-cli": "bin/cli-prod.js"
},
"engines": {
"node": ">=16.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"scripts": {
"start": "npx @babel/node",
"dev": "npx nodemon --exec npx @babel/node ./src/index.js dev --watch",
"build": "npx babel src --out-dir=./build --copy-files",
"production": "npm run build && node ./build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Can Gökçeaslan",
"repository": {
"type": "git",
"url": "https://github.com/techsmpl/cli.git"
},
"keywords": [
"cli",
"techsmpl",
"smpl",
"smplteam",
"smpl-team",
"smplteam-cli",
"smpl-team-cli",
"hellosmpl",
"hello-smpl",
"hello-smpl-team",
"hello-smplteam",
"hello-smplteam-cli"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/techsmpl/cli/issues"
},
"homepage": "https://github.com/techsmpl/cli",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"babel-plugin-module-resolver": "^5.0.0"
},
"dependencies": {
"@babel/register": "^7.18.9",
"aws-sdk": "^2.1311.0",
"axios": "^1.3.2",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21"
}
}