-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
88 lines (88 loc) · 1.83 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
{
"name": "@osjs/cli",
"version": "3.2.0",
"description": "OS.js CLI",
"main": "index.js",
"files": [
"bin",
"src",
"index.js",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"scripts": {
"test": "npm run eslint && npm run jest",
"jest": "jest",
"coverage": "jest --coverage",
"eslint": "eslint index.js 'src/**/*.js' 'bin/*.js'",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/os-js/osjs-cli.git"
},
"keywords": [
"osjs"
],
"bin": {
"osjs-cli": "bin/cli.js"
},
"engines": {
"node": ">=8.0"
},
"dependencies": {
"commander": "^4.1.1",
"consola": "^2.15.0",
"fs-extra": "^9.0.1",
"getopts": "^2.2.5",
"globby": "^11.0.2",
"inquirer": "^7.3.3",
"temp": "^0.9.4",
"which": "^2.0.2"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@osjs/dev-meta": "^2.2.0",
"husky": "^8.0.1"
},
"author": "Anders Evenrud <andersevenrud@gmail.com>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/os-js/osjs-cli/issues"
},
"homepage": "https://github.com/os-js/osjs-cli#readme",
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"extends": "@osjs/eslint-config"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"setupFilesAfterEnv": [
"<rootDir>/__mocks__/setup.js"
],
"coveragePathIgnorePatterns": [
"src/tasks/watch.js",
"/node_modules/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}