forked from paularmstrong/normalizr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "normalizr",
"version": "3.2.3",
"description": "Normalizes and denormalizes JSON according to schema for Redux and Flux applications",
"bugs": {
"url": "https://github.com/paularmstrong/normalizr/issues"
},
"homepage": "https://github.com/paularmstrong/normalizr",
"repository": {
"url": "https://github.com/paularmstrong/normalizr.git",
"type": "git"
},
"keywords": [
"flux",
"redux",
"normalize",
"denormalize",
"api",
"json"
],
"files": [
"dist/",
"index.d.ts",
"LICENSE",
"README.md"
],
"main": "dist/src/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "npm run clean && mkdirp dist && npm run build:node && npm-run-all --parallel build:development build:production",
"build:development": "NODE_ENV=development rollup -c",
"build:production": "NODE_ENV=production rollup -c",
"build:node": "babel src/*.js -d dist && babel src/schemas/*.js -d dist",
"clean": "rimraf dist",
"flow": "flow src; test $? -eq 0 -o $? -eq 2",
"lint": "eslint ./ --fix",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"test": "jest",
"test:coverage": "npm run test -- --coverage && cat ./coverage/lcov.info | coveralls"
},
"author": "Paul Armstrong",
"contributors": [
"Dan Abramov"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-1": "^6.16.0",
"coveralls": "^2.11.15",
"eslint": "^3.12.2",
"flow-bin": "^0.37.1",
"immutable": "^3.8.1",
"jest": "19.0.2",
"mkdirp": "^0.5.1",
"npm-run-all": "^3.1.2",
"rimraf": "^2.5.4",
"rollup": "^0.37.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-filesize": "^1.2.1",
"rollup-plugin-uglify": "^1.0.1",
"typescript": "^2.1.4",
"typescript-definition-tester": "0.0.5"
}
}