-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.53 KB
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
{
"name": "@groselha/create-component",
"version": "0.0.4",
"license": "MIT",
"author": "Lucas Motta <mail@lucasmotta.com> (https://groselha.xyz)",
"contributors": [
"Silvio Paganini <silvio@fluuu.id> (https://s2paganini.com)"
],
"scripts": {
"lint": "xo src/**/*.js lib/*.js --prettier",
"build": "babel src -d lib",
"preversion": "npm run lint && npm run build",
"prepublishOnly": "npm run lint && npm run build",
"precommit": "lint-staged"
},
"bin": "bin/index.js",
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.40",
"chalk": "^2.3.1",
"change-case": "^3.0.1",
"cli-truncate": "^1.1.0",
"cosmiconfig": "^4.0.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"jstransformer": "^1.0.0",
"jstransformer-ejs": "^0.2.0",
"merge": "^1.2.0",
"micromatch": "^3.1.5",
"minimist": "^1.2.0",
"ora": "^1.4.0",
"promptly": "^3.0.3",
"yargs": "^11.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.39",
"@babel/core": "^7.0.0-beta.39",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.40",
"@babel/plugin-transform-regenerator": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.39",
"eslint": "^4.17.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"xo": "^0.20.1"
},
"xo": {
"pretier": true,
"semicolon": false,
"space": 2,
"rules": {
"unicorn/no-process-exit": 0
}
},
"lint-staged": {
"*.js": [
"xo --fix --prettier",
"git add"
]
}
}