-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.49 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "find-referrer",
"version": "1.0.1",
"description": "Returns `referrer` from current page",
"main": "index.js",
"scripts": {
"lint": "standard **/*.js",
"test": "npm run test:local",
"test:local": "npm run lint && karma start ./karma.config.js",
"test:ci": "npm run lint && NODE_ENV=production karma start ./karma.config.js"
},
"author": "Kyungwook Park <parksama@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"browserstack-local": "^1.4.0",
"commitizen": "^3.1.1",
"conventional-changelog-cli": "^2.0.21",
"cz-conventional-changelog": "^2.1.0",
"karma": "4.1.0",
"karma-browserstack-launcher": "^1.5.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^3.0.5",
"mocha": "6.1.4",
"phantomjs": "^2.1.7",
"standard": "^12.0.1",
"webpack": "4.33.0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyungw00k/find-referrer.git"
},
"keywords": [
"referrer",
"document.referrer",
"referer",
"location.href"
],
"bugs": {
"url": "https://github.com/kyungw00k/find-referrer/issues"
},
"homepage": "https://github.com/kyungw00k/find-referrer#readme"
}