-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 927 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
34
{
"name": "@apatheticwes/scrollify",
"author": "wes hatch",
"license": "MIT",
"version": "0.5.1",
"description": "A simple thing for triggering 'them scroll effects that everybody loves",
"main": "./dist/scrollify.cjs.js",
"broswer": "./dist/scrollify.js",
"jsnext:main": "./dist/scrollify.es6.js",
"module": "./dist/scrollify.es6.js",
"repository": {
"type": "git",
"url": "https://github.com/apathetic/scrollify.git"
},
"keywords": [
"matrix",
"scroll"
],
"scripts": {
"start": "http-server ./ -p 8888 -d",
"clean": "rimraf dist/*.js*",
"build": "npm run clean && npm run lint && rollup -c",
"lint": "eslint src/*.js",
"test": "#tape -r babel-register test/*.js"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"eslint": "^7.19.0",
"http-server": "^0.12.3",
"rimraf": "^2.6.1",
"rollup": "^2.38.4",
"tape": "^4.6.0"
}
}