This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"name": "refluxed",
"version": "1.0.2",
"description": "Connecting React Components with Reflux Stores in a clean way",
"license": "MIT",
"repository": "elementar/refluxed",
"author": {
"name": "Fábio David Batista",
"email": "[email protected]"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "babel src -o ./index.js",
"develop": "nodangel --ignore node_modules --watch __tests__ --watch src --exec 'npm run test'",
"test": "babel-node node_modules/isparta/bin/isparta cover --include-all-sources --report lcov --report html node_modules/mocha/bin/_mocha -- --require babel-core/register",
"codecov": "npm run test && codecov",
"patch-release": "npm run build && npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm run build && npm version minor && npm publish && git push --follow-tags",
"major-release": "npm run build && npm version major && npm publish && git push --follow-tags"
},
"files": [
"index.js"
],
"keywords": [
"react",
"reflux",
"hoc"
],
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.1",
"codecov": "1.0.1",
"enzyme": "^2.4.1",
"isparta": "4.0.0",
"jsdom": "^9.4.2",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0",
"nodangel": "1.3.8",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"reflux": "^0.4.1"
}
}