-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
43
44
45
46
47
48
49
{
"version": "0.1.0",
"umd:name": "Scroller",
"name": "@newswire/scroller",
"description": "The tiniest scrollyteller around.",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"scripts": {
"build": "bundt src/index.mjs --minify",
"postbuild": "cp dist/index.umd.js docs/",
"docs": "documentation readme --readme-file README.md --section=API src/index.mjs && prettier --write README.md",
"prerelease": "npm run build && agadoo",
"release": "git commit -am \"$npm_package_version\" && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdmurphy/scroller.git"
},
"keywords": [
"scrollytelling",
"storytelling",
"interactive",
"graphics",
"journalism"
],
"author": "Ryan Murphy",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdmurphy/scroller/issues"
},
"homepage": "https://github.com/rdmurphy/scroller#readme",
"devDependencies": {
"@rdm/prettier-config": "^3.0.0",
"agadoo": "^3.0.0",
"bundt": "^1.1.5",
"documentation": "^14.0.1",
"prettier": "^3.0.0"
},
"prettier": "@rdm/prettier-config",
"terser": {
"mangle": {
"properties": {
"regex": "_$"
}
}
}
}