functional/package.json

30 lines
681 B
JSON
Raw Normal View History

2019-09-16 18:20:42 +00:00
{
"name": "tk-functional",
2019-09-24 21:39:04 +00:00
"version": "0.1.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-16 18:20:42 +00:00
"main": "dist/tk-functional.js",
2019-09-22 21:05:33 +00:00
"umd:main": "dist/tk-functional.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": "npx tk-base test",
"normalize": "npx tk-base normalize",
"build": "npx tk-base build",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"author": {
"name": "Michaël Lemaire",
"url": "https://thunderk.net"
},
"license": "ISC",
"devDependencies": {
2019-09-22 21:25:24 +00:00
"tk-base": "^0.1.7"
2019-09-16 18:20:42 +00:00
},
"dependencies": {}
2019-09-24 21:39:04 +00:00
}