-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 2.04 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
{
"name": "kopy",
"version": "9.0.0",
"description": "The backbone of a scaffolding tool.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "npm run lint && jest",
"lint": "xo",
"commit": "git-cz",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"repository": {
"url": "saojs/kopy",
"type": "git"
},
"author": "egoist<[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/micromatch": "^3.1.0",
"builtin-modules": "^3.0.0",
"colorette": "1.0.7",
"commitizen": "^3.0.5",
"cross-spawn": "6.0.5",
"cz-conventional-changelog": "^2.1.0",
"enquirer": "^2.3.0",
"env-paths": "2.0.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-rem": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.0.0-rc.13",
"ini": "1.3.5",
"is-binary-path": "2.0.0",
"jest": "^23.6.0",
"jstransformer": "1.0.0",
"jstransformer-ejs": "0.2.0",
"lint-staged": "^7.2.0",
"log-update": "2.3.0",
"majo": "0.6.3",
"micromatch": "3.1.10",
"ora": "3.0.0",
"prettier": "1.15.3",
"rollup": "^1.0.2",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"semantic-release": "^15.13.2",
"superstruct": "0.6.0",
"typescript": "^3.2.2",
"xo": "^0.23.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"xo --fix",
"git add"
]
},
"xo": {
"extends": [
"rem",
"plugin:prettier/recommended"
],
"rules": {
"unicorn/filename-case": "off",
"no-await-in-loop": "off",
"unicorn/catch-error-name": "off"
},
"envs": [
"jest"
]
},
"release": {
"branch": "master"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}