-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 905 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 905 Bytes
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": "@apatheticwes/scrollify",
"author": "wes hatch",
"license": "MIT",
"version": "0.4.7",
"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 8080 -d",
"clean": "rm -f dist/*.js*",
"build": "npm run clean && npm run lint && rollup -c",
"lint": "eslint source/js/*.js",
"test": "#tape -r babel-register test/*.js"
},
"devDependencies": {
"eslint": "^3.1.1",
"http-server": "^0.9.0",
"rollup": "^0.45.2",
"rollup-plugin-buble": "^0.12.1",
"tape": "^4.6.0"
}
}