This repository has been archived by the owner on Jan 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "normalizr-immutable",
"version": "0.0.3",
"description": "Normalizes JSON to immutable Records according to schema for Redux applications and provide proxied access to properties",
"main": "lib/index.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/mschipperheyn/normalizr-immutable.git"
},
"keywords": [
"redux",
"normalize",
"proxy",
"json"
],
"files": [
"dist",
"lib",
"src"
],
"author": "Marc Schipperheyn",
"license": "BSD",
"bugs": {
"url": "https://github.com/mschipperheyn/normalizr-immutable/issues"
},
"homepage": "https://github.com/mschipperheyn/normalizr-immutable",
"scripts": {
"test": "mocha --compilers js:babel-register --harmony-proxies --opts test/mocha.opts test/**/*.spec.js",
"prebuild": "rimraf dist lib",
"build": "webpack && babel src --out-dir lib",
"prepublish": "npm run build"
},
"dependencies": {
"harmony-proxy": "^1.0.1",
"immutable": "^3.7.6",
"lodash": "^4.2.1",
"lodash-es": "^4.2.1",
"normalizr": "^2.0.2"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react-native": "^1.7.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"chai-immutable": "^1.5.4",
"mocha": "^2.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"rimraf": "^2.5.2",
"webpack": "^1.13.0"
}
}