-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.46 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
{
"name": "redix",
"version": "1.0.22",
"description": "React Dependency Injection for your components and containers",
"main": "./lib/index.js",
"scripts": {
"build:lib": "babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/redix.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/redix.min.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min && node ./prepublish",
"clean": "rimraf lib dist coverage",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run build",
"test": "mocha './test/**/*.spec.js' --compilers js:babel-register --require ./test/setup.js",
"test:watch": "npm test -- --watch",
"test:cov": "babel-node ./node_modules/isparta/bin/isparta cover ./node_modules/mocha/bin/_mocha -- --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/alexlbr/redix.git"
},
"files": [
"dist",
"lib",
"src"
],
"keywords": [
"react",
"reactjs",
"redux",
"dependency",
"dependency injection",
"injection",
"context",
"store",
"actions",
"unit test",
"testing"
],
"author": "Alex Lobera <[email protected]> (http://github.com/alexlbr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexlbr/redix/issues"
},
"homepage": "https://github.com/alexlbr/redix",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"cross-env": "^1.0.7",
"enzyme": "^2.3.0",
"es3ify": "^0.2.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"glob": "^6.0.4",
"isparta": "4.0.0",
"istanbul": "^0.3.17",
"jsdom": "~5.4.3",
"mocha": "^2.2.5",
"react-addons-test-utils": "^0.14.0",
"rimraf": "^2.3.4",
"webpack": "^1.11.0"
},
"dependencies": {
"react": "^15.3.0"
},
"npmName": "redix",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"browserify": {
"transform": [
"loose-envify"
]
}
}