-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.45 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": "@dopesky/infiscroll",
"version": "2.0.0",
"description": "An Infinite Scroll Helper Complete with image lazy load, show on scroll animation, ajax helpers, toasts and more!",
"main": "src/js/infiscroll.js",
"directories": {
"test": "test"
},
"scripts": {
"build-watch": "gulp",
"build-dist": "gulp deploy",
"test": "nyc --reporter=lcov mocha test/index.js"
},
"author": "@dopesky",
"license": "MIT",
"repository": "github:dopesky/infiscroll",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"babelify": "^10.0.0",
"browser-sync": "^2.27.5",
"browserify": "^16.5.2",
"chai": "^4.3.4",
"gulp": "^4.0.2",
"gulp-sass": "^5.0.0",
"gulp-terser": "^1.4.1",
"jquery": "^3.6.0",
"jsdom": "^16.7.0",
"mocha": "^7.2.0",
"moment": "^2.29.1",
"node-sass": "^6.0.1",
"nyc": "^15.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.10",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"files": [
"dist",
"src",
"test",
"gulpfile.js",
"LICENSE"
],
"babel": {
"presets": [
"@babel/env"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"branches": 80,
"lines": 85,
"functions": 85,
"statements": 85
},
"keywords": [
"infiscroll"
]
}