functional/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2019-09-16 18:20:42 +00:00
{
"name": "tk-functional",
2019-10-22 20:24:45 +00:00
"version": "0.2.3",
2019-09-22 21:12:57 +00:00
"description": "Typescript/Javascript helpers for functional-style programming",
2019-09-22 21:05:33 +00:00
"source": "src/index.ts",
2019-09-25 20:45:17 +00:00
"main": "dist/tk-functional.umd.js",
"module": "dist/tk-functional.modern.js",
2019-09-22 21:25:24 +00:00
"types": "dist/index.d.ts",
2019-09-22 21:05:33 +00:00
"files": [
"/src",
"/dist"
],
2019-09-16 18:20:42 +00:00
"scripts": {
"test": "jest",
"normalize": "tk-base",
"build": "microbundle build -f modern,umd",
2019-09-16 18:20:42 +00:00
"prepare": "npm run build",
"prepublishOnly": "npm test",
"dev": "run-p dev:*",
"dev:test": "jest --watchAll",
2019-10-17 20:51:42 +00:00
"dev:build": "microbundle watch -f modern,umd",
"dev:serve": "live-server --host=localhost --port=5000 --no-browser dist"
2019-09-16 18:20:42 +00:00
},
"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"
],
2019-09-16 18:20:42 +00:00
"devDependencies": {
2019-10-17 20:51:42 +00:00
"tk-base": "^0.2.3"
2019-09-16 18:20:42 +00:00
},
"dependencies": {}
2019-10-17 20:51:42 +00:00
}