forked from cycjimmy/scroller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.84 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
53
54
55
56
57
{
"name": "@twiddly/scroller",
"version": "1.1.1",
"description": "Accelerated panning and zooming for HTML and Canvas",
"main": "dist/scroller.cjs.js",
"module": "dist/scroller.esm.js",
"browser": "dist/scroller.umd.min.js",
"scripts": {
"start": "npm run dev",
"lint": "eslint -c .eslintrc 'src/**/*.js'",
"lint:fix": "eslint --fix -c .eslintrc 'src/**/*.js' --fix",
"dev": "cross-env NODE_ENV=development rollup -c rollup/rollup.config.dev.js --watch",
"build": "npm run build:prod:umd && npm run build:prod",
"build:prod": "cross-env NODE_ENV=production rollup -c rollup/rollup.config.prod.js",
"build:prod:umd": "cross-env NODE_ENV=production rollup -c rollup/rollup.config.dev.js",
"build:deployment": "cross-env NODE_ENV=deployment rollup -c rollup/rollup.config.dev.js"
},
"repository": {
"type": "git",
"url": "https://github.com/twiddli/scroller.git"
},
"keywords": [
"scroller",
"mobile",
"animation"
],
"author": "twiddli <pew@pewpew.moe> (https://github.com/twiddli)",
"license": "MIT",
"bugs": {
"url": "https://github.com/twiddli/scroller/issues"
},
"homepage": "https://github.com/twiddli/scroller#readme",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@cycjimmy/config-lib": "^1.6.1",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-rollup": "^0.1.0",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-browsersync": "^1.1.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.8.2",
"rollup-plugin-terser": "^5.3.0"
}
}