-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "react-component-with-partials",
"version": "1.0.0",
"description": "High Order Component for efficient partial functions in reactjs callbacks",
"main": "./lib/index.js",
"scripts": {
"build": "npm run clean && npm run lint && npm run build:lib && npm run build:spec",
"build:lib": "mkdirp lib && babel src -d lib",
"build:spec": "mkdirp lib/spec && babel spec -d lib/spec",
"test": "npm run build && mocha --recursive lib/spec",
"clean": "rimraf lib",
"lint": "eslint src && eslint spec",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leourbina/react-component-with-partials.git"
},
"keywords": [
"react",
"mixin",
"hoc",
"immutable-js",
"immutability",
"partials",
"react-component"
],
"author": "Leo Urbina",
"license": "MIT",
"bugs": {
"url": "https://github.com/leourbina/react-component-with-partials/issues"
},
"homepage": "https://github.com/leourbina/react-component-with-partials#readme",
"dependencies": {
"immutable": ">=2.0.10",
"lodash.partial": ">=4.0.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.3",
"eslint-plugin-react": "^5.1.1",
"immutable": ">=2.0.10",
"lodash.partial": ">=4.0.0",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"react": "^15.1.0",
"rimraf": "^2.5.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
}
}