-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.32 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
93
94
95
96
{
"name": "mickey-cli",
"version": "1.1.0",
"description": "Command line utility for mickey",
"bin": {
"mickey": "bin/mickey",
"mickey-init": "bin/mickey-init"
},
"keywords": [
"mickey",
"cli",
"utility",
"framework",
"frontend"
],
"author": {
"name": "bubkoo",
"email": "bubkoo.wy@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mickeyjsx/mickey-cli.git"
},
"bugs": {
"url": "https://github.com/mickeyjsx/mickey-cli/issues"
},
"homepage": "https://github.com/mickeyjsx/mickey-cli#readme",
"dependencies": {
"async": "^2.5.0",
"babel-runtime": "^6.26.0",
"chalk": "^2.1.0",
"commander": "^2.11.0",
"consolidate": "^0.14.5",
"handlebars": "^4.0.10",
"inquirer": "^3.2.3",
"lodash.isfunction": "^3.0.8",
"metalsmith": "^2.3.0",
"minimatch": "^3.0.4",
"multimatch": "^2.1.0",
"read-metadata": "^1.0.0",
"update-notifier": "^2.2.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"cross-env": "^5.0.5",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^0.14.3",
"mocha": "^3.5.3",
"nyc": "^11.1.0",
"rimraf": "^2.6.1"
},
"files": [
"bin",
"lib",
"presets"
],
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"html",
"text"
],
"require": [
"babel-register"
],
"report-dir": "./test/coverage",
"sourceMap": false,
"instrument": false
},
"scripts": {
"test": "cross-env NODE_ENV=test nyc mocha ./test/index.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --ext .js,.jsx src",
"build": "rimraf lib && babel src --out-dir lib",
"prebuild": "npm run lint",
"prepublish": "npm run build",
"precommit": "npm run lint"
}
}