updeep-remeda/package.json

65 lines
1.6 KiB
JSON
Raw Normal View History

2015-07-31 15:31:34 +00:00
{
"name": "updeep",
2015-11-16 16:13:32 +00:00
"version": "0.11.0",
2015-08-02 07:32:32 +00:00
"description": "Easily update nested frozen objects and arrays in a declarative and immutable manner.",
2015-07-31 15:53:25 +00:00
"homepage": "https://github.com/aaronjensen/updeep",
2015-07-31 15:31:34 +00:00
"repository": {
"type": "git",
"url": "https://github.com/aaronjensen/updeep"
},
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": {
"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": {
"url": "https://github.com/aaronjensen/updeep/issues"
},
"peerDependencies": {
2015-08-01 15:13:25 +00:00
"lodash": "^3.0.0"
},
2015-07-31 15:53:25 +00:00
"devDependencies": {
2015-08-27 02:45:12 +00:00
"babel": "^5.8.21",
"babel-core": "^5.5.0",
2015-08-02 06:25:08 +00:00
"babel-eslint": "^4.0.5",
"babel-loader": "^5.3.2",
2015-08-10 06:25:19 +00:00
"benchmark": "^1.0.0",
"chai": "^3.2.0",
2015-08-02 06:25:08 +00:00
"eslint": "^0.24.1",
2015-08-01 15:13:25 +00:00
"eslint-config-airbnb": "0.0.7",
2015-08-10 06:25:19 +00:00
"exports-loader": "^0.6.2",
2015-07-31 15:53:25 +00:00
"gulp": "^3.6.0",
"gulp-babel": "^5.1.0",
"gulp-eslint": "^0.15.0",
2015-07-31 15:53:25 +00:00
"gulp-mocha": "^2.0.0",
2015-11-16 16:21:31 +00:00
"gulp-nsp": "^2.0.0",
2015-08-04 17:39:56 +00:00
"karma": "^0.13.3",
"karma-babel-preprocessor": "^5.2.1",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.4",
"karma-phantomjs-launcher": "^0.2.0",
"karma-webpack": "^1.7.0",
2015-08-02 07:48:08 +00:00
"lodash": "^3.0.0",
2015-08-04 17:39:56 +00:00
"mocha": "^2.2.5",
"phantomjs": "^1.9.17",
"rimraf": "^2.4.2",
"webpack": "^1.10.5",
2015-08-10 06:25:19 +00:00
"webpack-dev-server": "^1.10.1",
"webpack-stream": "^2.1.0"
2015-07-31 15:53:25 +00:00
}
2015-07-31 15:31:34 +00:00
}