This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 2.12 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
{
"name": "redux-doghouse",
"version": "1.0.2",
"description": "Scoping helpers for building reusable components with Redux",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib dist es",
"lint": "eslint src",
"test": "cross-env BABEL_ENV=commonjs jest",
"check:src": "npm run lint && npm run test",
"prepublish": "npm run clean && npm run check:src && npm run build",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
"counters": "cross-env BABEL_ENV=examples babel-node examples/counters/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/DataDog/redux-doghouse.git"
},
"keywords": [
"redux",
"scope",
"doghouse",
"react"
],
"author": "Datadog <dev@datadog.com> (http://www.datadog.com)",
"contributors": [
"Zacqary Adam Xeper <zacqary@datadog.com> (https://github.com/zacqary)"
],
"license": "MIT",
"peerDependencies": {
"redux": "3.x"
},
"devDependencies": {
"autoprefixer": "6.5.0",
"babel-cli": "6.16.0",
"babel-eslint": "7.0.0",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-3": "6.17.0",
"cross-env": "3.1.1",
"css-loader": "0.25.0",
"eslint": "3.7.1",
"eslint-plugin-react": "6.4.1",
"express": "^4.14.0",
"jest": "17.0.3",
"postcss-loader": "0.13.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-redux": "4.4.5",
"redux": "3.6.0",
"style-loader": "0.13.1",
"webpack": "^1.13.3",
"webpack-dev-middleware": "1.8.4",
"webpack-hot-middleware": "2.13.0"
},
"jest": {
"testRegex": "(/test/.*\\.spec.js)$"
}
}