This repository has been archived by the owner on Feb 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "agda-mode",
"main": "./lib/js/bundled.js",
"version": "0.9.12",
"description": "agda-mode on Atom",
"scripts": {
"keymap-gen": "./keymap.el generate",
"keymap-print": "./keymap.el print",
"start": "bsb -clean && bsb -make-world -w",
"build": "bsb -make-world && npx webpack --mode=production",
"test": "atom -t lib/js/test"
},
"activationCommands": {
"atom-text-editor": [
"agda-mode:load"
],
"atom-text-editor.agda": [
"agda-mode:input-symbol",
"agda-mode:query-symbol",
"agda-mode:go-to-definition"
],
"atom-text-editor[data-grammar~='agda']": [
"agda-mode:input-symbol",
"agda-mode:query-symbol",
"agda-mode:go-to-definition"
]
},
"atomTestRunner": "atom-mocha",
"repository": "https://github.com/banacorn/agda-mode",
"license": "MIT",
"engines": {
"atom": ">=1.19.0 <2.0.0"
},
"devDependencies": {
"atom-mocha": "^2.2.0",
"bs-mocha": "^0.5.0",
"chai": "^4.2.0",
"diff": "^4.0.1",
"git-branch": "^2.0.1",
"node-dir": "^0.1.17",
"webpack": "^4.39.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@glennsl/bs-json": "^5.0.1",
"@glennsl/rebase": "github:glennsl/rebase",
"bs-platform": "^7.2",
"bs-webapi": "^0.15.3",
"bs-nd": "^0.1.5",
"bs-atom2": "^1.40.1",
"compare-versions": "^3.5.1",
"reason-promise": "^1.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"reason-react": ">=0.7.0",
"reason-react-update": "^0.1.1"
}
}