-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 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
{
"name": "command-palette-plus",
"main": "./lib/main",
"version": "1.0.0",
"description": "An opinionated palette inspired by GitHub's command palette - show less, do more",
"keywords": [
"commands",
"suggestions",
"palette",
"scope",
"react",
"atom"
],
"repository": "https://github.com/keevan/command-palette-plus",
"license": "MIT",
"release": {
"extends": "@semantic-release/apm-config",
"branches": [
"main"
]
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"providedServices": {
"command-palette-plus": {
"versions": {
"0.1.0": "providePallete"
}
}
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/apm-config": "^9.0.1",
"@types/fuzzaldrin-plus": "^0.6.2",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"babel-plugin-add-module-exports": "^1.0.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.10.0",
"husky": "^7.0.4",
"semantic-release": "^19.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"atomTranspilers": [
{
"glob": "{lib,test}/**/*.js",
"transpiler": "@atom/babel7-transpiler",
"options": {
"cacheKeyFiles": [
"package.json",
".babelrc.js"
],
"setBabelEnv": "ATOM_GITHUB_BABEL_ENV"
}
}
],
"dependencies": {
"@atom/babel7-transpiler": "1.0.0-1",
"@babel/core": "7.x <7.12.10",
"@babel/generator": "7.8.0",
"@babel/plugin-proposal-object-rest-spread": "7.8.0",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.8.0",
"fuzzaldrin-plus": "^0.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}