-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "uos",
"version": "1.2.0",
"description": "A tiny 250b scroll listener with progress.",
"source": "src/index.ts",
"main": "dist/uos.mjs",
"unpkg": "dist/uos.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "http-server demo --silent & $npm_execpath run watch",
"watch": "microbundle watch --format umd --entry demo/src/index.js --output demo/dist/bundle.js",
"build": "microbundle --name uos --format es,umd --sourcemap false",
"prepare": "$npm_execpath run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaneenige/uos.git"
},
"license": "MIT",
"author": {
"name": "Colin van Eenige",
"email": "[email protected]",
"url": "https://use-the-platform.com"
},
"files": [
"src",
"dist"
],
"keywords": [
"scroll",
"progress"
],
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"http-server": "^0.11.1",
"microbundle": "^0.11.0"
}
}