-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.6 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.6 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "scrollemitter",
"version": "1.1.3",
"description": "enhanced scroll events like scroll: start, progress, stop, min, max",
"main": "scrollemitter.js",
"browser": "scrollemitter.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production run-s lint clear build:js build:lib size",
"build-": "cross-env NODE_ENV=production run-s lint clear build:lib build:js size docs",
"clear": "rimraf lib dist",
"bump": "standard-version",
"semantic": "semantic-release",
"docs": "documentation readme src/scrollemitter.js --section API -q",
"lint:fix": "eslint src --fix",
"lint": "eslint src test",
"prerelease": "run-s bump build && git commit -a -m 'version: bump version' && git push --follow-tags origin master",
"release": "run-s copy && cd lib && npm publish",
"copy": "cp -rf ./package.json lib && cp -rf ./README.md lib && cp -rf ./dist/index.js lib/scrollemitter.min.js",
"size": "echo \"Gzipped Size: $(strip-json-comments --no-whitespace dist/index.js | gzip-size)\"",
"build:js": "parcel build src/index.js",
"build:lib": "babel src -d lib",
"watch": "parcel src/index.html",
"postrelease-": "bs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soenkekluth/scrollemitter.git"
},
"keywords": [
"scroll",
"scroll direction",
"scroll speed",
"scrolling",
"scroll features",
"browser",
"enhanced",
"onscroll",
"animationframe",
"animation",
"enhanced scroll",
"scrollevents",
"scroll event",
"scroll behavior",
"fast",
"jankfree",
"jank",
"jank-free",
"perfomance",
"scroll perfomance",
"perfomant"
],
"author": "Sönke Kluth <soenke.kluth@gmail.com> (http://soenkekluth.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/soenkekluth/scrollemitter/issues"
},
"homepage": "https://github.com/soenkekluth/scrollemitter#readme",
"dependencies": {
"micromitter": "1.0.4",
"raf": "^3.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"branchsite": "^4.0.2",
"cross-env": "^5.1.3",
"documentation": "^5.3.5",
"eslint": "^4.15.0",
"eslint-plugin-private-props": "^0.3.0",
"gzip-size-cli": "^2.1.0",
"np": "^2.18.3",
"npm-run-all": "^4.1.2",
"parcel-bundler": "^1.4.1",
"rimraf": "^2.6.2",
"semantic-release": "^12.2.2",
"standard-version": "^4.3.0",
"strip-json-comments-cli": "^1.0.1"
}
}