-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.74 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
{
"name": "skal",
"description": "Manage separate shell configurations with ease.",
"version": "0.4.3",
"repository": "[email protected]:mrwest808/skal.git",
"author": "Johan <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"skal": "./bin/cli.js"
},
"engines": {
"node": ">=8"
},
"files": [
"bin",
"lib",
"src",
"types",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "yarn build && yarn test",
"commit": "git-cz",
"release": "standard-version",
"test": "jest test/*.test.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"chalk": "^2.4.2",
"conf": "^6.0.1",
"execa": "^2.0.4",
"fs-extra": "^8.1.0",
"globby": "^10.0.1",
"inquirer": "^7.0.0",
"meow": "^5.0.0",
"outdent": "^0.7.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@types/concat-stream": "^1.6.0",
"@types/conf": "^3.0.0",
"@types/execa": "^2.0.0",
"@types/fs-extra": "^8.0.0",
"@types/globby": "^9.1.0",
"@types/inquirer": "^6.5.0",
"@types/jest": "^24.0.18",
"@types/meow": "^5.0.0",
"babel-jest": "^24.0.0",
"commitizen": "^4.0.3",
"concat-stream": "^2.0.0",
"cz-conventional-changelog": "3.0.2",
"jest": "^24.0.0",
"jest-expect-message": "^1.0.2",
"ncp": "^2.0.0",
"standard-version": "^7.0.0",
"typescript": "^3.3.1"
},
"resolutions": {
"lodash": "^4.17.15",
"lodash.template": "^4.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}