-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1006 Bytes
/
package.json
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
{
"name": "cape-lodash",
"version": "2.4.0",
"description": "A few lodash/fp inspired helper utility functions.",
"main": "lib/index.js",
"author": "Kai Curry <[email protected]> (http://www.cape.io/)",
"repository": "cape-io/cape-lodash",
"bugs": {
"url": "https://github.com/cape-io/cape-lodash/issues"
},
"scripts": {
"build": "mkdir -p lib && babel ./src -d lib",
"prepublish": "npm run build",
"test": "babel-tape-runner test/**/*spec.js"
},
"license": "MIT",
"dependencies": {
"affirmative": "webmasterkai/affirmative",
"lodash": "^4.17.5"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"babel-tape-runner": "^2.0.1",
"eslint": "^3.10.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"tape": "^4.6.2"
}
}