-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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
{
"name": "react-redux-cli",
"version": "0.0.1",
"description": "Scaffolding library for react and redux-react projects",
"main": "index.js",
"scripts": {
"eslint": "eslint ./ --cache --ignore-pattern .gitignore",
"test": "mocha --compilers js:babel-core/register ./test/"
},
"pre-commit": [
"eslint",
"test"
],
"babel": {
"presets": [
"stage-3",
"latest"
]
},
"bin": {
"rcli": "./bin/rcli.js"
},
"author": "Olga Kozlova",
"license": "ISC",
"dependencies": {
"ejs": "^2.5.6",
"fs-extra": "^3.0.1",
"humps": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^4.0.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"mocha": "^3.4.2",
"pre-commit": "^1.2.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OlgaKozlova/test.git"
},
"bugs": {
"url": "https://github.com/OlgaKozlova/test/issues"
},
"homepage": "https://github.com/OlgaKozlova/test#readme"
}