updeep-remeda/package.json

75 lines
2.0 KiB
JSON
Raw Normal View History

2015-07-31 15:31:34 +00:00
{
"name": "updeep",
2018-11-28 00:56:59 +00:00
"version": "1.1.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": [
"dist"
],
2015-08-01 16:09:34 +00:00
"main": "dist/index.js",
2015-07-31 15:31:34 +00:00
"keywords": [
"immutable",
"frozen",
"functional",
"declarative"
],
2015-07-31 15:53:25 +00:00
"scripts": {
"dtslint": "dtslint --localTs node_modules/typescript/lib types",
2015-07-31 15:53:25 +00:00
"test": "gulp",
"test:watch": "gulp watch",
2015-08-10 06:25:19 +00:00
"prepublish": "gulp prepublish",
"perf-server": "`npm bin`/webpack-dev-server --config perf/webpack.config.js --hot"
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": {
2019-01-19 00:48:40 +00:00
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.119",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
2016-01-13 15:58:55 +00:00
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"dtslint": "^0.9.8",
"eslint": "^4.19.1",
2017-04-19 00:47:53 +00:00
"eslint-config-airbnb-base": "^11.1.3",
"eslint-config-prettier": "^4.0.0",
2017-04-19 00:47:53 +00:00
"eslint-plugin-import": "^2.2.0",
2017-04-19 00:55:46 +00:00
"eslint-plugin-prettier": "^2.0.1",
"exports-loader": "^0.7.0",
2015-07-31 15:53:25 +00:00
"gulp": "^3.6.0",
"gulp-babel": "^7.0.1",
2017-04-19 00:47:53 +00:00
"gulp-eslint": "^3.0.1",
2015-07-31 15:53:25 +00:00
"gulp-mocha": "^2.0.0",
2015-08-04 17:39:56 +00:00
"karma": "^0.13.3",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
2017-04-19 00:34:29 +00:00
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^2.0.13",
"mocha": "^6.0.0",
2017-04-19 00:34:29 +00:00
"phantomjs-prebuilt": "^2.1.14",
2017-04-19 00:55:46 +00:00
"prettier": "^1.1.0",
"rimraf": "^2.4.2",
"typescript": "^3.6.3",
"webpack": "^1.10.5",
"webpack-dev-server": "^3.1.11",
"webpack-stream": "^2.1.0"
2019-01-19 00:48:40 +00:00
},
"types": "types"
2015-07-31 15:31:34 +00:00
}