This repository has been archived by the owner on Jul 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
77 lines (77 loc) · 2.35 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
{
"name": "js-hyperclick",
"main": "./lib/js-hyperclick",
"version": "1.19.0",
"description": "A hyperclick provider that lets you jump to where variables are defined.",
"keywords": [],
"license": "MIT",
"moduleRoots": [
"lib/core",
"custom-resolver.js"
],
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"scripts": {
"precommit": "lint-staged && npm test",
"test": "atom --test spec/",
"test-watch": "nodemon --exec 'npm test'"
},
"lint-staged": {
"*.js": [
"prettier --write --no-semi --trailing-comma all",
"eslint",
"git add"
]
},
"package-deps": [
"hyperclick"
],
"providedServices": {
"hyperclick.provider": {
"versions": {
"0.0.0": "getProvider"
}
}
},
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-syntax-async-generators": "^7.2.0",
"@babel/plugin-syntax-bigint": "^7.4.4",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-decorators": "^7.2.0",
"@babel/plugin-syntax-do-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-export-default-from": "^7.2.0",
"@babel/plugin-syntax-export-namespace-from": "^7.2.0",
"@babel/plugin-syntax-flow": "^7.2.0",
"@babel/plugin-syntax-function-bind": "^7.2.0",
"@babel/plugin-syntax-function-sent": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-syntax-json-strings": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-syntax-logical-assignment-operators": "^7.2.0",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.2.0",
"@babel/plugin-syntax-numeric-separator": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-optional-catch-binding": "^7.2.0",
"@babel/plugin-syntax-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-pipeline-operator": "^7.3.0",
"@babel/plugin-syntax-throw-expressions": "^7.2.0",
"acorn-to-esprima": "^1.0.4",
"atom-package-deps": "^4.6.0",
"debug": "^4.1.1",
"escope": "^3.2.0",
"resolve": "^1.10.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"flow-bin": "^0.86.0",
"flow-typed": "^2.5.1",
"husky": "^0.13.3",
"jest-diff": "^19.0.0",
"lint-staged": "^3.4.0",
"prettier": "^1.17.0"
}
}