-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "fpes",
"version": "1.1.4",
"description": "Functional Programming for EcmaScript(Javascript)",
"main": "index.js",
"scripts": {
"test": "mocha --require @babel/register --require should test/**/*.js",
"dev": "webpack -d --watch",
"build": "webpack --mode production && bash build-custom.sh",
"build-custom": "webpack --mode production --config webpack.custom.config.js",
"clean": "find dist -name '*.js*' | sed 's/^src\\///' | xargs rm -f",
"release": "npm version patch; npm publish; git push; git push --tags",
"prepare": "npm run build",
"postpublish": "npm run clean"
},
"directories": {
"lib": "./",
"test": "./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeaEntityLab/fpEs.git"
},
"keywords": [
"functional-programming",
"fp",
"js",
"es",
"es6",
"es7",
"javascript",
"functional-reactive-programming",
"reactive",
"reactive-programming",
"rx",
"monad",
"monads",
"optional",
"optional-implementations",
"publisher-subscriber",
"publisher-subscriber-pattern",
"curry",
"currying",
"pubsub"
],
"author": "John Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/TeaEntityLab/fpEs/issues"
},
"homepage": "https://github.com/TeaEntityLab/fpEs#readme",
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.16.9",
"@babel/runtime": "^7.16.7",
"@gfx/zopfli": "^1.0.15",
"ansi-regex": ">=6.0.1",
"babel-loader": "^9.1.0",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^10.0.0",
"glob-parent": ">=6.0.2",
"minimatch": ">=3.0.5",
"mocha": "^10.0.0",
"nanoid": ">=3.2.0",
"path-parse": ">=1.0.7",
"serialize-javascript": "^6.0.0",
"set-value": ">=4.1.0",
"simple-get": ">=4.0.1",
"should": "^13.2.3",
"webpack": "^5.67.0",
"webpack-cli": "^5.0.0"
}
}