forked from AsaAyers/js-hyperclick
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.18 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.18 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
{
"name": "js-hyperclick",
"main": "./lib/js-hyperclick",
"version": "1.12.2",
"description": "A hyperclick provider that lets you jump to where variables are defined.",
"keywords": [],
"repository": "https://github.com/AsaAyers/js-hyperclick",
"license": "MIT",
"moduleRoots": "lib/core",
"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": {
"acorn-to-esprima": "^1.0.4",
"atom-package-deps": "^4.6.0",
"babel-core": "^6.17.0",
"babylon": "^6.11.4",
"escope": "^3.2.0",
"resolve": "^1.1.6"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"flow-bin": "^0.44.2",
"husky": "^0.13.3",
"jest-diff": "^19.0.0",
"lint-staged": "^3.4.0",
"prettier": "^1.2.2"
}
}