-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 989 Bytes
/
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
{
"name": "observer-registry",
"version": "1.0.0",
"description": "An IntersectionObserver utility for notifying callbacks when an element's intersection changes.",
"main": "dist/observer-registry.min.js",
"scripts": {
"test": "jest",
"build": "uglifyjs --compress --mangle -o dist/observer-registry.min.js -- src/ObserverRegistry.js "
},
"repository": {
"type": "git",
"url": "[email protected]:wearebraid/observer-registry.git"
},
"keywords": [
"IntersectionObserver",
"callback"
],
"author": "Justin Schroeder <[email protected]>",
"license": "MIT",
"devDependencies": {
"acorn": "^6.1.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-es5": "^1.3.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"uglify-js": "^3.5.3"
}
}