-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 970 Bytes
/
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
{
"name": "funpro",
"version": "1.0.1",
"description": "Be functional by using union types, pattern matching, and pure side-effects",
"keywords": [
"functional programming",
"functional",
"maybe",
"async task",
"pure",
"union types",
"pattern matching"
],
"main": "dist/main.js",
"module": "dist/main.mjs",
"umd:main": "dist/main.umd.js",
"files": [
"/dist/*"
],
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "microbundle index.js --name FunPro --sourcemap false",
"prepublishOnly": "npm run build",
"test": "jest *.test.js"
},
"author": "Deedo P",
"repository": {
"type": "git",
"url": "https://github.com/ChristophP/funpro"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.6.3",
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"jest-extended": "^0.11.5",
"microbundle": "^0.11.0",
"ramda": "^0.25.0"
}
}