forked from kahwee/viewability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.54 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
{
"name": "viewability",
"version": "1.3.1",
"description": "Returns how viewable an element is",
"main": "viewability.js",
"scripts": {
"lint": "standard etc/**/*.js tests/**/*.js",
"build": "webpack",
"test": "cross-env NODE_ENV=test karma start",
"coveralls": "cat ./coverage/report-lcov/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"viewable",
"viewability",
"advertising",
"advertisement",
"screen",
"element"
],
"repository": {
"type": "git",
"url": "https://github.com/kahwee/viewability.git"
},
"bugs": {
"url": "https://github.com/kahwee/viewability/issues"
},
"standard": {
"globals": [
"it",
"before",
"after",
"beforeEach",
"afterEach",
"expect",
"describe"
]
},
"homepage": "https://github.com/kahwee/viewability",
"author": "KahWee Teng <[email protected]> (https://kw.sg/)",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-polyfill": "6.23.0",
"babel-preset-env": "^1.5.2",
"chai": "^4.0.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.1",
"istanbul": "^0.4.4",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-chai": "^0.1.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0",
"standard": "^10.0.2",
"webpack": "^3.0.0"
}
}