-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "@web-alchemy/smooth",
"version": "1.0.5",
"type": "module",
"source": "src/smooth.js",
"exports": {
"require": "./dist/smooth.cjs",
"default": "./dist/smooth.modern.js"
},
"main": "./dist/smooth.umd.js",
"umd:main": "./dist/smooth.umd.js",
"module": "./dist/smooth.module.js",
"unpkg": "./dist/smooth.umd.js",
"types": "dist/smooth.d.ts",
"scripts": {
"start": "npx serve",
"build": "microbundle --generateTypes",
"dev": "microbundle watch --generateTypes",
"prepublishOnly": "npm run build",
"postpublish": "git push origin --all; git push origin --tags",
"postversion": "npm publish",
"preversion": "npm test",
"test": "echo \"No test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-alchemy/smooth.git"
},
"bugs": {
"url": "https://github.com/web-alchemy/smooth/issues"
},
"homepage": "https://github.com/web-alchemy/smooth",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"source": "src/smooth.js",
"main": "dist/smooth.umd.js"
},
"devDependencies": {
"microbundle": "^0.15.1"
}
}