-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.4 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
56
57
58
59
60
61
62
63
64
{
"name": "react-i13n-ga",
"description": "google analytics plugin for react i13n",
"version": "0.2.6",
"browser": "index.client.js",
"main": "index.server.js",
"repository": {
"type": "git",
"url": "git@github.com:kaesonho/react-i13n-ga.git"
},
"scripts": {
"cover": "istanbul cover --dir ${COVERAGE_DIR:-artifacts} -- _mocha tests/unit --require ./tests/setup --recursive --reporter tap",
"lint": "jshint",
"test": "mocha tests/unit --require ./tests/setup --recursive --reporter spec"
},
"devDependencies": {
"chai": "^2.1.2",
"coveralls": "^2.11.1",
"istanbul": "^0.3.0",
"jsdom": "^9.6.0",
"jshint": "^2.5.1",
"mocha": "^2.0",
"object-assign": "^4.0.1"
},
"keywords": [
"react",
"i13n",
"instrumentation",
"ga",
"google-analytics",
"google"
],
"precommit": [
"lint",
"test"
],
"yhint": {
"excludes": [
"/dist/",
"/tests/"
]
},
"jshintConfig": {
"node": true
},
"bugs": {
"url": "https://github.com/kaesonho/react-i13n-ga/issues"
},
"homepage": "https://github.com/kaesonho/react-i13n-ga",
"directories": {
"test": "tests"
},
"dependencies": {
"debug": "^2.2.0",
"react-i13n": "^2.0.4"
},
"author": "Kaeson Ho <geniepotato@gmail.com>",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
]
}