-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.28 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.28 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
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
{
"name": "sparkling",
"main": "./lib/sparkling",
"version": "0.3.30",
"activationEvents": [
"sparkling:files",
"sparkling:gitStage",
"sparkling:gitBranches",
"sparkling:gitLog",
"sparkling:gitLogCheckout",
"sparkling:gitCheckout",
"sparkling:gitReflog",
"sparkling:gitReflogCheckout",
"sparkling:allLines",
"sparkling:ls",
"sparkling:removeFiles",
"sparkling:copyFiles",
"sparkling:moveFiles",
"sparkling:find",
"sparkling:replace",
"sparkling:relativePathInsert",
"sparkling:relativePathCopy",
"sparkling:lines",
"sparkling:autocompleteLines"
],
"description": "Sparkling is a general fuzzy finder so fuzzy that it is fizzy",
"scripts": {
"test": "jest",
"build": "rollup -c"
},
"keywords": [
"fuzzy",
"find"
],
"repository": "https://github.com/germtb/sparkling",
"jest": {},
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"providedServices": {
"sparkling": {
"description": "",
"versions": {
"0.1.0": "provideSparkling"
}
}
},
"consumedServices": {
"atom.file-icons": {
"versions": {
"1.0.0": "consumeFileIcons"
}
}
},
"dependencies": {
"babylon": "^6.18.0",
"classnames": "^2.2.5",
"fb-watchman": "^2.0.0",
"fuzzysort": "^1.0.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-virtualized": "^9.19.0",
"redux": "^3.6.0",
"rxjs": "^5.5.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^7.3.0",
"rollup": "^0.55.5",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-bundle-size": "^1.0.1",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-sizes": "^0.4.2"
}
}