-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
40 lines (40 loc) · 959 Bytes
/
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
{
"name": "react-flux",
"version": "1.0.1",
"description": "A library implementing React Flux data flow",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha -G",
"test-cov": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/kjda/ReactFlux.git"
},
"keywords": [
"React",
"Flux",
"ReactJS"
],
"author": "Khaled Jouda",
"license": "MIT",
"bugs": {
"url": "https://github.com/kjda/ReactFlux/issues"
},
"homepage": "https://github.com/kjda/ReactFlux",
"dependencies": {
"lodash": "^3.10.1",
"promise": "^7.0.1"
},
"devDependencies": {
"chai": "^2.2.0",
"colors": "^1.0.3",
"commander": "^2.7.1",
"coveralls": "^2.11.2",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"sinon": "^1.14.1",
"underscore": "^1.8.3",
"webpack": "^1.9.10"
}
}