This repository was archived by the owner on Jun 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.64 KB
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
{
"name": "replux",
"version": "2.0.0",
"description": "Enhancements for Redux to use with greater self contained components",
"main": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib",
"lint": "eslint src",
"prepublish": "npm run clean && npm run build",
"start": "node server.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregthebusker/replux.git"
},
"keywords": [
"redux",
"react",
"flux",
"javascript"
],
"author": "Greg Schechter",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregthebusker/replux/issues"
},
"homepage": "https://github.com/gregthebusker/replux#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.5",
"babel-jest": "^10.0.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.7.0",
"eslint-plugin-react": "^4.3.0",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"jest-cli": "^0.6.1",
"jest-webpack": "^0.2.1",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"react-hot-loader": "^1.3.0",
"redux": "^3.3.1",
"rimraf": "^2.5.2",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"jest": {
"scriptPreprocessor": "./node_modules/babel-jest",
"unmockedModulePathPatterns": [
"./node_modules/",
"./src"
]
},
"dependencies": {
"hoist-non-react-statics": "^1.0.5"
}
}