-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
114 lines (114 loc) · 3.78 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "feature-redux",
"version": "3.0.0",
"description": "feature-u redux integration",
"main": "lib/index.js",
"browser": {
"main": "dist/feature-redux.js"
},
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"package.json",
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"dist",
"es",
"lib",
"src"
],
"scripts": {
"COMMENT1": "***--------------------------------------------------------------------------***",
"COMMENT2": "*** Please refer to SCRIPTS.md for an overview of the project's npm scripts. ***",
"COMMENT3": "***--------------------------------------------------------------------------***",
"COMMENT4": " ",
"build": "cross-env BABEL_ENV=commonjs webpack --progress --colors",
"build:clean": "rimraf dist lib es",
"build:plat:all": "npm-run-all build:plat:bundle build:plat:bundle.min build:plat:lib build:plat:es",
"build:plat:bundle": "cross-env NODE_ENV=development npm run build",
"build:plat:bundle.min": "cross-env NODE_ENV=production npm run build",
"build:plat:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore spec.js",
"build:plat:lib": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --ignore spec.js",
"build:watch": "npm run build -- --watch",
"check": "npm-run-all lint pkgReview test cov",
"clean": "npm-run-all build:clean cov:clean",
"cov": "jest src --coverage",
"cov:clean": "rimraf coverage",
"cov:publish": "cat coverage/lcov.info | codacy-coverage --verbose",
"dev": "npm run test:watch",
"lint": "echo '*** Verify code quality (lint):' && eslint src",
"pkgReview": "echo '*** Showing outdated installed packages:' && npm outdated --long || true",
"prepublish": "npm-run-all lint pkgReview clean build:plat:all test cov",
"start": "npm run dev",
"test": "jest src",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/KevinAst/feature-redux.git"
},
"keywords": [
"feature-u",
"feature",
"features",
"react",
"redux",
"utility",
"util",
"utils",
"helper",
"helpers",
"js",
"javascript",
"geeku",
"astx"
],
"author": "Kevin J. Bridges <[email protected]> (https://github.com/KevinAst)",
"license": "MIT",
"bugs": {
"url": "https://github.com/KevinAst/feature-redux/issues"
},
"homepage": "https://github.com/KevinAst/feature-redux",
"jest": {
"testURL": "http://localhost",
"collectCoverageFrom": [
"src/**/*.js",
"!**/spec/**"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"codacy-coverage": "^2.0.2",
"cross-env": "^4.0.0",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-react": "^7.6.1",
"feature-u": "^3.0.0",
"jest": "^22.1.4",
"npm-run-all": "^4.0.2",
"react": ">=0.14.0",
"react-dom": ">=16.0.1",
"react-redux": ">=1.0.0",
"redux": ">=3.1.0",
"rimraf": "^2.6.1",
"webpack": "^2.4.1"
},
"dependencies": {
"lodash.isfunction": "^3.0.8",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1"
},
"peerDependencies": {
"feature-u": ">=3.0.0",
"react": ">=0.14.0",
"redux": ">=3.1.0",
"react-redux": ">=1.0.0",
"react-dom": ">=16.0.1"
}
}