This repository was archived by the owner on May 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.3 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
{
"name": "react-immutable-render-mixin",
"version": "0.9.7",
"description": "React PureRenderMixin replacement for immutable-js library",
"homepage": "https://github.com/jurassix/react-immutable-render-mixin",
"bugs": "https://github.com/jurassix/react-immutable-render-mixin/issues",
"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"
},
"keywords": [
"react",
"mixin",
"immutable-js",
"immutability",
"react-component"
],
"main": "./lib/index.js",
"author": "clint ayres",
"license": "MIT",
"peerDependencies": {
"immutable": ">=2.0.10",
"react": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/jurassix/react-immutable-render-mixin.git"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.4",
"react": "^0.14.7",
"rimraf": "^2.4.4"
}
}