-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "denormalizr-immutable",
"version": "0.0.2",
"description": "Denormalizer for normalizr using immutable data",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/dehbmarques/denormalizr-immutable.git"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm run test -- --watch",
"prebuild": "rimraf dist lib",
"build": "webpack && babel src --out-dir lib",
"prepublish": "npm run build"
},
"author": "André Marques <dehbmarques@gmail.com>",
"bugs": {
"url": "https://github.com/dehbmarques/denormalizr-immutable/issues"
},
"homepage": "https://github.com/dehbmarques/denormalizr-immutable",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"eslint": "^2.4.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"webpack": "^1.12.14"
},
"dependencies": {
"immutable": "^3.7.6",
"lodash": "^4.6.1",
"normalizr": "^2.0.0",
"normalizr-immutable": "0.0.3"
}
}