-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 KB
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
{
"name": "@web-alchemy/smooth-scroll",
"version": "1.0.2",
"author": {
"name": "monochromer",
"email": "monochromer@mail.ru"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-alchemy/smooth-scroll.git"
},
"bugs": {
"url": "https://github.com/web-alchemy/smooth-scroll/issues"
},
"homepage": "https://github.com/web-alchemy/smooth-scroll",
"files": [
"dist"
],
"main": "dist/smooth-scroll.js",
"module": "dist/smooth-scroll.es.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"release": "np",
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist",
"build": "rollup -c",
"example": "npx browser-sync start --server --directory --serveStatic 'dist' --files 'dist'"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"change-case": "^3.1.0",
"lodash": "^4.17.21",
"np": "^5.2.1",
"rimraf": "^2.7.1",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.3"
},
"dependencies": {
"@web-alchemy/event-emitter": "^1.1.0"
}
}