updeep-remeda/package.json

65 lines
1.7 KiB
JSON
Raw Normal View History

2015-07-31 15:31:34 +00:00
{
"name": "updeep",
2019-09-18 15:38:57 +00:00
"version": "1.2.0",
2015-08-02 07:32:32 +00:00
"description": "Easily update nested frozen objects and arrays in a declarative and immutable manner.",
2016-09-06 05:52:41 +00:00
"homepage": "https://github.com/substantial/updeep",
2015-07-31 15:31:34 +00:00
"repository": {
"type": "git",
2016-09-06 05:52:41 +00:00
"url": "https://github.com/substantial/updeep"
2015-07-31 15:31:34 +00:00
},
2015-07-31 15:53:25 +00:00
"author": "Aaron Jensen",
"files": [
2019-09-18 15:31:41 +00:00
"dist",
"types"
2015-07-31 15:53:25 +00:00
],
2015-07-31 15:31:34 +00:00
"keywords": [
"immutable",
"frozen",
"functional",
"declarative"
],
2020-04-02 14:18:34 +00:00
"source": "lib/index.js",
"main": "dist/index.js",
"module": "dist/index.module.js",
"types": "types",
2015-07-31 15:53:25 +00:00
"scripts": {
2020-04-02 14:18:34 +00:00
"build": "microbundle",
"dev": "microbundle watch",
"dtslint": "dtslint --localTs node_modules/typescript/lib types",
"lint": "npm run dtslint && eslint .",
2020-04-02 17:06:00 +00:00
"test": "mocha --recursive --require \"@babel/register\" test"
2015-07-31 15:53:25 +00:00
},
2015-07-31 15:31:34 +00:00
"license": "MIT",
"bugs": {
2016-09-06 05:52:41 +00:00
"url": "https://github.com/substantial/updeep/issues"
2015-07-31 15:31:34 +00:00
},
"dependencies": {
2016-01-14 16:02:59 +00:00
"lodash": "^4.2.0"
},
2015-07-31 15:53:25 +00:00
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.7.1",
2020-04-02 18:24:44 +00:00
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.7.0",
2019-01-19 00:48:40 +00:00
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.119",
"@types/mocha": "^7.0.1",
2020-04-02 14:16:13 +00:00
"@types/node": "^13.9.8",
2020-04-02 18:24:44 +00:00
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
2020-04-02 14:16:13 +00:00
"dtslint": "^3.4.1",
"eslint": "^6.8.0",
2020-04-02 18:24:44 +00:00
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-expect-type": "^0.0.4",
2020-04-02 14:16:13 +00:00
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
2020-04-02 14:18:34 +00:00
"microbundle": "^0.11.0",
"mocha": "^7.0.0",
2020-04-02 14:16:13 +00:00
"prettier": "^2.0.2",
2020-04-02 17:06:00 +00:00
"typescript": "^3.6.3"
2020-04-02 14:18:34 +00:00
}
2015-07-31 15:31:34 +00:00
}