forked from paularmstrong/normalizr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.29 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
69
70
{
"name": "normalizr",
"version": "3.3.0",
"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/normalizr.js",
"module": "dist/normalizr.es.js",
"typings": "index.d.ts",
"sideEffects": false,
"scripts": {
"build": "npm run clean && npm-run-all --parallel build:*",
"build:development": "NODE_ENV=development rollup -c",
"build:production": "NODE_ENV=production rollup -c",
"clean": "rimraf dist",
"flow": "flow",
"lint": "eslint --fix .",
"lint:ci": "eslint .",
"prebuild": "npm run clean",
"precommit": "flow check && lint-staged",
"prepublishOnly": "npm run build",
"test": "jest",
"test:ci": "jest --ci",
"test:coverage": "npm run test -- --coverage && cat ./coverage/lcov.info | coveralls"
},
"author": "Paul Armstrong",
"contributors": ["Dan Abramov"],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"coveralls": "^2.11.15",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-prettier": "^2.6.0",
"flow-bin": "^0.65.0",
"husky": "^0.14.3",
"immutable": "^3.8.1",
"jest": "^22.4.3",
"lint-staged": "^6.1.0",
"npm-run-all": "^3.1.2",
"prettier": "^1.12.1",
"rimraf": "^2.5.4",
"rollup": "^0.54.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-uglify": "^3.0.0",
"typescript": "^2.1.4",
"typescript-definition-tester": "0.0.5",
"uglify-es": "^3.3.8"
},
"dependencies": {},
"lint-staged": {
"src/**/*.js": ["test", "git add"],
"*.{js,json,css,md}": ["prettier --write", "git add"]
}
}