-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 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
{
"name": "whatsapp-direct",
"version": "1.1.0",
"description": "WhatsApp directly without saving contact!",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "tsc --w",
"serve-sass": "sass --watch css:assets/css",
"build": "tsc && echo \"TS files transpiled to JS\" && sass css:assets/css && echo \"sass files converted to css\" && grunt && echo \"build is ready now\"",
"prettier-add": "prettier --write . && git add .",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"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": "https://whatsapp.ashish.link",
"devDependencies": {
"gh-pages": "^3.1.0",
"grunt": "^1.3.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-htmlmin": "^3.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-replace": "^1.0.1",
"pre-commit": "^1.2.2",
"prettier": "2.0.5",
"sass": "^1.26.10",
"typescript": "^3.6.4"
},
"dependencies": {},
"gitHooks": {
"pre-commit": "pre-commit"
},
"pre-commit": [
"prettier-add",
"deploy"
]
}