forked from ashish-r/whatsapp-direct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "whatsapp-direct",
"version": "1.0.0",
"description": "WhatsApp directly without saving contact!",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "tsc --w",
"build": "tsc && grunt uglify:t1 && echo \"TS files transpiled to JS and minified\"",
"build-add": "tsc && grunt uglify:t1 && git add scripts/build/ && echo \"TS files transpiled to JS, minified and added for commit\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashish-r/whatsapp-direct.git"
},
"keywords": [
"pwa",
"js",
"ts",
"whatsapp",
"whatsapp-direct"
],
"author": "Ashish Ranjan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashish-r/whatsapp-direct/issues"
},
"homepage": "http://ashish-r.github.io/whatsapp-direct",
"devDependencies": {
"grunt": "^1.0.4",
"grunt-contrib-uglify": "^4.0.1",
"pre-commit": "^1.2.2",
"typescript": "^3.6.4"
},
"dependencies": {},
"gitHooks": {
"pre-commit": "pre-commit"
},
"pre-commit": [
"build-add"
]
}