forked from danielcardeenas/sulla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.65 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
54
55
56
57
58
{
"name": "sulla",
"version": "1.1.1",
"description": "Javascript whatsapp framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run build:middleware && npm run build:lib",
"build:lib": "ts-node prebuild.ts",
"build:middleware": "tsc --out src/lib/middleware.js src/middleware/middleware.ts --module amd",
"watch": "npm run build && tsc-watch ./src/index.ts --outDir ./dist --onSuccess \"node ./dist/index.js\" --onFailure \"echo Error while compiling\" --compiler typescript/bin/tsc",
"clean": "rm -rf session && rm -rf dist",
"clean:full": "rm -rf node_modules && npm run clean",
"precise-commits": "precise-commits",
"test": "echo \"No tests yet\""
},
"husky": {
"hooks": {
"pre-commit": "npm run precise-commits"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielcardeenas/sulla.git"
},
"keywords": [
"whatsapp",
"javascript",
"bot",
"typescript",
"automatization",
"puppeteer"
],
"author": "Daniel Cardenas",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielcardeenas/sulla/issues"
},
"homepage": "https://github.com/danielcardeenas/sulla#readme",
"devDependencies": {
"@types/node": "^12.7.0",
"@types/puppeteer": "^1.19.0",
"@types/shelljs": "^0.8.5",
"husky": "^3.0.2",
"precise-commits": "^1.0.2",
"prettier": "^1.18.2",
"ts-node": "^8.3.0",
"tsc-watch": "^2.4.0",
"typescript": "^3.5.1"
},
"dependencies": {
"ora": "^3.4.0",
"puppeteer": "^1.19.0",
"qrcode-terminal": "^0.12.0",
"rxjs": "^6.5.2",
"shelljs": "^0.8.3"
}
}