-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "@monoceros/plugin-reverse-scroll",
"version": "1.0.2",
"description": "Reverse scroll plugin for @monoceros",
"main": "dist/plugin-reverse-scroll.js",
"scripts": {
"pre-commit:msg": "echo 'Pre-commit checks...' && exit 0",
"test": "npm run lint",
"lint": "npm run lint:md",
"lint:md": "remark .",
"build": "npm run build:module && npm run build:browser && npm run build:md",
"build:md": "remark readme.md --output",
"build:module": "rollup -c --environment BUILD:module",
"build:browser": "rollup -c --environment BUILD:browser"
},
"keywords": [
"scroll",
"javascript",
"animation",
"browser",
"monoceros",
"reverse",
"scroll",
"reverse scroll"
],
"author": "FollyWolly <[email protected]> (https://folkertjan.nl)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/monoceros-js/plugin-reverse-scroll.git"
},
"pre-commit": {
"run": [
"test"
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"core-js": "^3.6.4",
"pre-commit": "^1.2.2",
"regenerator-runtime": "^0.13.5",
"remark-cli": "^8.0.0",
"remark-toc": "^7.0.0",
"rollup": "^2.3.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0"
}
}