forked from milesvdw/VJava-Atom
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "variational-editor-atom",
"main": "./lib/variational-editor",
"version": "0.7.5",
"description": "An editor plugin supporting Variational Java development",
"keywords": [],
"activationCommands": {
"atom-workspace": "variational-editor:toggle"
},
"repository": "https://github.com/lambda-land/variational-editor-atom",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"@types/atom": "^1.36.1",
"@types/event-kit": "^2.4.0",
"@types/jquery": "^3.3.4",
"@types/node": "^10.5.2",
"@types/pathwatcher": "^8.0.4",
"@types/q": "^1.5.0",
"@types/spectrum": "^1.5.29",
"@types/text-buffer": "^13.0.4",
"@types/tinycolor2": "^1.4.0",
"jquery": "^3.3.1",
"spectrum-colorpicker": "^1.8.0",
"typescript": "^2.9.2"
},
"scripts": {
"atominstall": "npm run build && apm link",
"build": "npm run compile && npm run css",
"compile": "tsc",
"css": "cp node_modules/spectrum-colorpicker/spectrum.css styles/",
"develop": "npm run build && apm link --dev && atom --dev ./ && npm run watch",
"test": "atom --test spec",
"watch": "tsc --watch --preserveWatchOutput"
},
"devDependencies": {
"temp": "^0.8.3"
}
}