This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
63 lines (63 loc) · 1.96 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
{
"name": "atom-keymap",
"version": "8.2.15",
"description": "Atom's DOM-aware keymap module",
"main": "./lib/keymap-manager",
"scripts": {
"prepare": "npm run clean && npm run compile && npm run lint && npm run atomdoc",
"clean": "rimraf lib && rimraf api.json",
"compile": "coffee --no-header --output lib --compile src && babel src --out-dir lib",
"lint": "coffeelint -r src spec && eslint src spec",
"test": "electron-mocha --renderer --preload spec/helpers/setup.js spec/*",
"test-drive": "SUPPRESS_EXIT=true electron-mocha --no-colors --renderer --interactive --preload spec/helpers/setup.js spec/*",
"ci": "npm run compile && npm run lint && npm run test",
"atomdoc": "grunt shell:update-atomdoc atomdoc"
},
"repository": {
"type": "git",
"url": "https://github.com/atom/atom-keymap.git"
},
"bugs": {
"url": "https://github.com/atom/atom-keymap/issues"
},
"license": "MIT",
"dependencies": {
"clear-cut": "^2",
"emissary": "^1.1.0",
"event-kit": "^1.0.0",
"fs-plus": "^3.0.0",
"grim": "^1.2.1",
"keyboard-layout": "2.0.17",
"pathwatcher": "^8.0.0",
"property-accessors": "^1",
"season": "^6.0.2"
},
"devDependencies": {
"babel-cli": "6.5.1",
"babel-eslint": "5.0.0-beta10",
"babel-preset-es2015": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-register": "6.5.2",
"chai": "3.5.0",
"coffee-script": "1.7.0",
"coffeelint": "1.16.0",
"debounce": "1.0.0",
"electron": "^4.2.12",
"electron-mocha": "^6.0.4",
"electron-rebuild": "^2.3.5",
"eslint": "2.2.0",
"eslint-config-standard": "5.1.0",
"eslint-plugin-promise": "1.0.8",
"eslint-plugin-standard": "1.3.1",
"grunt": "0.4.1",
"grunt-atomdoc": "1.0.0",
"grunt-cli": "0.1.8",
"grunt-contrib-coffee": "0.9.0",
"grunt-shell": "0.2.2",
"lolex": "1.4.0",
"rimraf": "2.2.2",
"sinon": "1.17.3",
"space-pencil": "0.3.0",
"temp": "0.8.3"
}
}