-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 911 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 911 Bytes
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
{
"name": "ragu-cli",
"version": "0.0.48",
"description": "A command line helper for ragu framework",
"main": "entrypoint.js",
"repository": "https://github.com/ragu-framework/ragu-cli.git",
"author": "Maniero <carlosmaniero@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest",
"dev": "ts-node entrypoint.ts",
"build": "yarn tsc && cp package.json dist && cp README.md dist"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"ragu-react-server-adapter": "^0.0.23",
"ragu-simple-adapter": "^0.0.9",
"ragu-vue-server-adapter": "^0.0.63",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"dependencies": {
"commander": "^7.1.0",
"ragu-server": "^0.0.87",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.4.0"
},
"bin": {
"ragu-cli": "./entrypoint.js"
}
}