-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "@ehduardu/bat-framework",
"version": "1.2.3",
"description": "A simple framework for Google Apps Script",
"main": "dist/src/cli.js",
"scripts": {
"dev": "set NODE_ENV=development&&yarn ts-node src/cli.ts",
"dev:init": "set NODE_ENV=development&&yarn ts-node src/init.ts",
"build": "yarn run tsc && node postBuild.js",
"prebuild": "yarn run clean",
"clean": "node clean.js",
"prepublish": "yarn run build"
},
"bin": {
"bat-framework": "dist/src/cli.js"
},
"keywords": [
"Apps",
"Script",
"web-app",
"GAS",
"react",
"google-apps-script"
],
"author": "Dudu Code",
"license": "MIT",
"repository": "https://github.com/ehduardu/bat-framework",
"dependencies": {
"chalk": "^4.1.0",
"cli-select": "^1.1.2",
"commander": "^8.1.0",
"cpy": "^8.1.2",
"cross-spawn": "^7.0.3",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^27.0.3",
"@types/node": "^14.14.37",
"@types/rimraf": "^3.0.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.2.3"
}
}