forked from mderazon/node-deeplink
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 928 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.4.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 --single-quote --list-different '**/*.js'",
"fix:prettier": "prettier --single-quote --write '**/*.js'",
"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.1.2",
"express": "^4.14.0",
"mocha": "^4.1.0",
"prettier": "^1.9.2",
"zombie": "^5.0.7"
},
"keywords": [
"deep-link",
"deeplink",
"express",
"mobile"
]
}