forked from paularmstrong/normalizr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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": "normalizr",
"version": "2.0.1",
"description": "Normalizes JSON according to schema for Flux application",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/gaearon/normalizr.git"
},
"keywords": [
"flux",
"normalize",
"api",
"json"
],
"files": [
"dist",
"lib",
"src"
],
"author": "Dan Abramov",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/normalizr/issues"
},
"homepage": "https://github.com/gaearon/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": "^5.8.3",
"babel-core": "^5.8.3",
"babel-loader": "^5.3.2",
"chai": "^3.2.0",
"mocha": "^2.2.5",
"rimraf": "^2.4.2",
"webpack": "^1.10.5"
},
"dependencies": {
"lodash": "^4.0.0"
}
}