-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.03 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
{
"name": "@hugojosefson/highland-esmodule-unpkg",
"version": "2.13.5-2",
"description": "Proper(?) browser esmodule re-export of Highland.js via unpkg.com.",
"module": "index.mjs",
"unpkg": "index.mjs",
"scripts": {
"prepare": "run-p build:*",
"build:index.mjs": "node --experimental-json-modules generate-index.mjs > index.mjs",
"build:README.md": "replace 'unpkg@[0-9.-]*' \"unpkg@${npm_package_version}\" README.md",
"build:example-module.mjs": "replace 'unpkg@[0-9.-]*' \"unpkg@${npm_package_version}\" example-module.mjs",
"postversion": "run-p build:* && git add --all && git commit --amend -C HEAD && git tag -f v${npm_package_version} HEAD"
},
"files": [
"index.mjs",
"package.json"
],
"keywords": [
"highland",
"highlandjs",
"esm",
"esmodule",
"module",
"unpkg",
"browser"
],
"repository": "hugojosefson/highland-esmodule-unpkg",
"license": "Apache-2.0",
"devDependencies": {
"highland": "^2.13.5",
"npm-run-all": "^4.1.5",
"replace": "^1.2.0"
}
}