-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 972 Bytes
/
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
{
"name": "scrollio-js",
"version": "0.12.0",
"description": "A headless scrolling library",
"main": "dist/main",
"module": "src/index.ts",
"files": [
"dist/**/main.js",
"dist/**/main.js.map",
"dist/**/*.d.ts",
"dist/**/*.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/silicakes/scrollio.git"
},
"types": "dist/lib/index.d.ts",
"scripts": {
"dev": "NODE_ENV=development webpack serve --mode development",
"build": "NODE_ENV=production webpack --progress --colors --mode production --report",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "Michael Katz @silicakes",
"license": "ISC",
"devDependencies": {
"copy-webpack-plugin": "^9.0.1",
"html-webpack-plugin": "^5.3.2",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}