-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mudash",
"version": "0.10.0",
"main": "./index.js",
"description": "Lodash wrapper providing Immutable.JS support",
"repository": {
"type": "git",
"url": "git+https://github.com/brianneisler/mudash.git"
},
"author": "Brian Neisler <me@brianneisler.com>",
"bugs": {
"url": "https://github.com/brianneisler/mudash/issues"
},
"homepage": "https://github.com/brianneisler/mudash#readme",
"scripts": {
"clean": "gulp clean",
"cleanse": "gulp cleanse",
"dev": "gulp dev",
"test": "gulp test"
},
"dependencies": {
"es6-symbol": "^3.1.0",
"immutable": "^3.8.1",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^6.1.2",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"del": "^2.2.1",
"eslint": "^3.9.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^3.0.0",
"gulp-recipe": "0.0.2",
"gulp-sourcemaps": "^1.9.0",
"gulp-util": "^3.0.7",
"immutable-devtools": "^0.0.7"
},
"license": "MIT",
"keywords": [
"immutable",
"lodash"
]
}