-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
71 lines (71 loc) · 2 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
{
"name": "extensible-duck",
"version": "1.6.0",
"description": "Modular and Extensible Redux Reducer Bundles (ducks-modular-redux)",
"main": "dist/extensible-duck.js",
"scripts": {
"test": "gulp",
"lint": "gulp lint",
"test-browser": "gulp test-browser",
"watch": "gulp watch",
"build": "gulp build",
"precommit": "lint-staged",
"prettier": "prettier --no-semi --single-quote --trailing-comma es5 --write '{src,test}/**/*.js'",
"coverage": "gulp coverage"
},
"lint-staged": {
"**/{src,test}/**/*.js": [
"prettier --no-semi --single-quote --trailing-comma es5 --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/investtools/extensible-duck.git"
},
"keywords": [],
"author": "Andre Aizim Kelmanosn <akelmanson@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/investtools/extensible-duck/issues"
},
"homepage": "https://github.com/investtools/extensible-duck",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-register": "6.24.1",
"chai": "3.5.0",
"del": "2.2.2",
"glob": "7.0.6",
"gulp": "3.9.1",
"gulp-eslint": "3.0.1",
"gulp-filter": "4.0.0",
"gulp-istanbul": "1.1.1",
"gulp-livereload": "3.8.1",
"gulp-load-plugins": "1.2.4",
"gulp-mocha": "3.0.1",
"gulp-plumber": "1.1.0",
"gulp-rename": "1.2.2",
"gulp-sourcemaps": "2.6.0",
"gulp-uglify": "3.0.0",
"isparta": "4.0.0",
"json-loader": "0.5.4",
"lint-staged": "4.0.2",
"mocha": "3.0.2",
"prettier": "1.5.3",
"reselect": "^3.0.1",
"sinon": "1.17.5",
"sinon-chai": "2.8.0",
"webpack": "3.2.0",
"webpack-stream": "3.2.0"
},
"babelBoilerplateOptions": {
"entryFileName": "extensible-duck.js",
"mainVarName": "Duck"
}
}