62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "updeep",
|
|
"version": "1.2.0",
|
|
"description": "Easily update nested frozen objects and arrays in a declarative and immutable manner.",
|
|
"homepage": "https://github.com/substantial/updeep",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/substantial/updeep"
|
|
},
|
|
"author": "Aaron Jensen",
|
|
"files": [
|
|
"dist",
|
|
"types"
|
|
],
|
|
"keywords": [
|
|
"immutable",
|
|
"frozen",
|
|
"functional",
|
|
"declarative"
|
|
],
|
|
"source": "lib/index.js",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.module.js",
|
|
"types": "types",
|
|
"scripts": {
|
|
"build": "microbundle",
|
|
"dev": "microbundle watch",
|
|
"dtslint": "dtslint --localTs node_modules/typescript/lib types",
|
|
"lint": "npm run dtslint && eslint .",
|
|
"test": "mocha --recursive --require \"@babel/register\" test"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/substantial/updeep/issues"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.7.0",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
|
|
"@babel/preset-env": "^7.7.1",
|
|
"@babel/register": "^7.7.0",
|
|
"@types/chai": "^4.1.7",
|
|
"@types/lodash": "^4.14.119",
|
|
"@types/mocha": "^7.0.1",
|
|
"@types/node": "^13.9.8",
|
|
"benchmark": "^2.1.4",
|
|
"chai": "^4.2.0",
|
|
"dtslint": "^3.4.1",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb-base": "^14.1.0",
|
|
"eslint-config-prettier": "^6.3.0",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"microbundle": "^0.11.0",
|
|
"mocha": "^7.0.0",
|
|
"prettier": "^2.0.2",
|
|
"typescript": "^3.6.3"
|
|
}
|
|
}
|