44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "tk-functional",
|
|
"version": "0.2.0",
|
|
"description": "Typescript/Javascript helpers for functional-style programming",
|
|
"source": "src/index.ts",
|
|
"main": "dist/tk-functional.umd.js",
|
|
"module": "dist/tk-functional.modern.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"/src",
|
|
"/dist"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"normalize": "tk-base",
|
|
"build": "microbundle build -f modern,umd",
|
|
"prepare": "npm run build",
|
|
"prepublishOnly": "npm test",
|
|
"dev": "run-p dev:*",
|
|
"dev:test": "jest --watchAll",
|
|
"dev:build": "microbundle watch -f modern,umd",
|
|
"dev:serve": "live-server --host=localhost --port=5000 --no-browser dist"
|
|
},
|
|
"author": {
|
|
"name": "Michaël Lemaire",
|
|
"url": "https://thunderk.net"
|
|
},
|
|
"license": "ISC",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://code.thunderk.net/tslib/tk-functional.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://gitlab.com/thunderk/tk-functional/issues"
|
|
},
|
|
"homepage": "https://code.thunderk.net/tslib/tk-functional",
|
|
"keywords": [
|
|
"typescript"
|
|
],
|
|
"devDependencies": {
|
|
"tk-base": "^0.2.3"
|
|
},
|
|
"dependencies": {}
|
|
}
|