-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 987 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
35
36
37
38
39
40
41
{
"name": "cliquer",
"version": "0.1.6",
"description": "Make a family of related functions from a naming function and an array of arguments",
"main": "index.js",
"author": "Kyle Chamberlain",
"license": "MIT",
"keywords": [
"curry",
"functional",
"boilerplate",
"reduction",
"library"
],
"repository": {
"type": "git",
"url": "https://github.com/Koleok/cliquer.git"
},
"scripts": {
"test": "jest",
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"lodash.curry": "^4.1.1",
"object-assign": "^4.1.0"
},
"devDependencies": {
"babel-jest": "^18.0.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"jest": "^18.1.0",
"ramda": "^0.23.0",
"sanctuary": "^0.11.1",
"xyz": "^2.1.0"
}
}