-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1022 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "app_link",
"version": "1.0.0",
"description": "App Link functionality",
"main": "js/app_link_route.js",
"directories": {
"test": "test"
},
"devDependencies": {
"eslint": "^1.5.1",
"express": "^4.13.1",
"ghooks": "^0.3.2",
"lodash": "^3.10.0",
"mocha": "^2.2.5",
"phantom": "^0.7.2",
"portfinder": "^0.4.0"
},
"scripts": {
"test": "mocha",
"lint": "eslint js/* test/*",
"example": "node test/fixtures/http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robcolburn/drupal-app_link.git"
},
"keywords": [
"drupal",
"applink",
"app-link",
"redirect"
],
"author": "Rob Colburn <[email protected]>",
"license": "(ISC OR GPL-3.0)",
"bugs": {
"url": "https://github.com/robcolburn/drupal-app_link/issues"
},
"homepage": "https://github.com/robcolburn/drupal-app_link#readme",
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
}
}