-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 856 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 856 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
{
"name": "scrollalo",
"version": "1.0.1",
"description": "🍭 A react component to smooth scrolling",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx babel src --out-dir dist",
"demo": "parcel ./demo/index.html --out-dir ./demo/public",
"demo:build": "npm run build && parcel build ./demo/index.html --out-dir ./demo/public",
"prepublish": "npm run build"
},
"keywords": [],
"author": "simonecarella@gmail.com",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}