-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.61 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.61 KB
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
65
66
67
{
"name": "viewability",
"version": "1.3.4",
"description": "Returns how viewable an element is",
"main": "viewability.js",
"scripts": {
"lint": "standard '*.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"
],
"ignore": [
"dist/**",
"coverage/**",
"node_modules/**"
]
},
"homepage": "https://github.com/kahwee/viewability",
"author": "KahWee Teng <tengkahwee@gmail.com> (https://kw.sg/)",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.25.0",
"@babel/preset-env": "^7.25.0",
"babel-loader": "^9.2.0",
"babel-plugin-istanbul": "^7.0.0",
"chai": "^4.5.0",
"core-js": "^3.39.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.1",
"mocha": "^10.8.0",
"mocha-lcov-reporter": "^1.3.0",
"standard": "^17.1.2",
"webpack": "^5.96.0",
"webpack-cli": "^5.1.4"
}
}