This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 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
{
"name": "atom-keymap",
"version": "6.3.3-beta1",
"description": "Atom's DOM-aware keymap module",
"main": "./lib/keymap-manager",
"scripts": {
"prepublish": "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": "devtool --quit --console node_modules/mocha/bin/_mocha --colors spec/helpers/setup.js spec/*",
"test-drive": "SUPPRESS_EXIT=true devtool --quit node_modules/mocha/bin/_mocha --no-colors 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": "^2.0.4",
"grim": "^1.2.1",
"keyboard-layout": "^1.2.0",
"pathwatcher": "^6.2",
"property-accessors": "^1",
"season": "^5.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.14.2",
"debounce": "1.0.0",
"devtool": "2.2.0",
"electron-rebuild": "1.2.1",
"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-coffeelint": "0.0.6",
"grunt-contrib-coffee": "0.9.0",
"grunt-shell": "0.2.2",
"lolex": "1.4.0",
"mocha": "2.4.5",
"rimraf": "2.2.2",
"sinon": "1.17.3",
"space-pencil": "0.3.0",
"temp": "0.8.3"
},
"coffeelintConfig": {
"no_empty_param_list": {
"level": "error"
},
"max_line_length": {
"level": "ignore"
},
"indentation": {
"level": "ignore"
}
}
}