-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "@fluss/core",
"version": "0.36.0",
"description": "Core functions and structures for functional programming.",
"keywords": [
"functional-programming",
"monad",
"typescript"
],
"main": "./index.js",
"exports": {
".": "./index.js",
"./*": "./*.js"
},
"type": "module",
"scripts": {
"test": "tsm node_modules/uvu/bin.js tests",
"clean": "rm -rf build",
"prebuild": "npm run clean",
"build": "rollup -c",
"postbuild": "npm run copy; npm test",
"copy": "npm run copy:settings; npm run copy:docs; npm run copy:license",
"copy:settings": "cp package.json build/",
"copy:license": "cp LICENSE build/",
"copy:docs": "cp README.md build/; cp CHANGELOG.md build/",
"prerelease": "npm run build",
"release": "npm publish build/ --access public"
},
"author": "Kapelianovych Yevhen",
"repository": {
"type": "git",
"url": "/~https://github.com/YevhenKap/fluss-core.git"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.3",
"@types/sinon": "^10.0.12",
"prettier": "^2.7.1",
"rollup": "^2.76.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^14.0.0",
"tslib": "^2.4.0",
"tsm": "^2.2.1",
"typescript": "^4.7.4",
"uvu": "^0.5.6"
}
}