forked from stephband/fn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.72 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
50
51
52
53
54
55
56
57
58
59
{
"name": "fn",
"title": "Fn",
"version": "1.4.0",
"author": {
"name": "stephband",
"url": "http://stephen.band",
"twitter": "stephband"
},
"repository": {
"type": "git",
"url": "https://github.com/stephband/fn.git"
},
"bugs": {
"url": "https://github.com/stephband/fn/issues"
},
"licenses": [
{
"url": "http://unlicense.org/"
}
],
"files": [
"js/fn.js"
],
"description": "A library of functions, observers and streams, published as ES6 modules.",
"keywords": [
"browser",
"web",
"library",
"functional",
"stream",
"js",
"javascript"
],
"homepage": "http://stephen.band/fn/",
"docs": "http://stephen.band/fn/",
"devDependencies": {
"eslint": "^6.5.1",
"clean-css": "^4.2.3",
"node-sass": "^4.13.0",
"node-static": "^0.7.11",
"puppeteer": "^5.0.0",
"rollup": "^2.21.0",
"madge": "^3.9.2"
},
"type": "module",
"module": "module.js",
"main": "index.js",
"scripts": {
"lint": "eslint modules/*.js",
"build": "npm run build-module && npm run build-css && npm run build-docs",
"build-css": "node ../fn/build-css.js style.css style.min.css",
"build-module": "rollup ./module.js --o ./module.rolled.js --f esm",
"build-docs": "node ../fn/build-html.js index.template.html index.html",
"graph": "madge --image ./module.svg ./module.js",
"publish": "git pull origin master && npm run build-css && npm run build-module && git add --all && git commit -am 'Builds version 2.1.1' && git push"
},
"dependencies": {}
}