forked from paularmstrong/normalizr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "normalizr",
"version": "2.1.0",
"description": "Normalizes JSON according to schema for Redux and Flux applications",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/paularmstrong/normalizr.git"
},
"keywords": [
"flux",
"normalize",
"api",
"json"
],
"files": [
"dist",
"lib",
"src"
],
"author": "Dan Abramov",
"contributors": [
"Paul Armstrong"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/paularmstrong/normalizr/issues"
},
"homepage": "https://github.com/paularmstrong/normalizr",
"scripts": {
"test": "mocha --compilers js:babel-register --recursive",
"test:watch": "npm run test -- --watch",
"prebuild": "rimraf dist lib",
"build": "webpack && babel src --out-dir lib",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.8.0",
"chai": "^3.2.0",
"mocha": "^2.4.5",
"rimraf": "^2.4.2",
"webpack": "^1.13.0"
},
"dependencies": {
"lodash": "^4.11.2"
}
}