-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1 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
{
"name": "juno-plus",
"main": "./dist/juno-plus",
"version": "0.13.1",
"description": "Enhances Juno - Julia IDE",
"keywords": [
"julia",
"juno",
"toolbar",
"tool-bar",
"button"
],
"repository": "https://github.com/aminya/juno-plus",
"license": "MIT",
"scripts": {
"typescript": "tsc -p src/tsconfig.json || echo done",
"format": "prettier --write .",
"lint": "eslint . --fix",
"build": "npm run typescript -s",
"prepare": "npm run build"
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"packageDependencies": {
"tool-bar": "^1.2.2",
"julia-client": "^0.12.3"
},
"devDependencies": {
"@types/atom": "^1.40.7",
"eslint": "latest",
"eslint-config-atomic": "^1.5.1",
"prettier": "latest",
"typescript": "^4.0.2"
},
"consumedServices": {
"tool-bar": {
"versions": {
"^0 || ^1": "consumeToolBar"
}
},
"julia-client": {
"versions": {
"0.1.0": "consumeJuliaClient"
}
}
}
}