-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
34 lines (34 loc) · 918 Bytes
/
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
{
"name": "node-deeplink",
"version": "0.6.0",
"description": "Easily create an endpoint in your web server that redirects deep links to mobile apps",
"main": "lib/deeplink.js",
"scripts": {
"test:prettier": "prettier --list-different '**/*.{js,md,html}'",
"fix:prettier": "prettier --write '**/*.{js,md,html}'",
"test": "npm run test:prettier && mocha test/test.js -t 4000"
},
"author": "Michael Derazon <[email protected]>",
"homepage": "https://github.com/mderazon/node-deeplink",
"repository": {
"type": "git",
"url": "git://github.com/mderazon/node-deeplink.git"
},
"license": "MIT",
"dependencies": {
"html-inline": "^1.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"express": "^4.17.1",
"mocha": "^7.2.0",
"prettier": "^2.0.5",
"zombie": "^6.1.4"
},
"keywords": [
"deep-link",
"deeplink",
"express",
"mobile"
]
}