-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.27 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
64
65
{
"name": "descam",
"main": "./lib/descam",
"version": "0.0.0",
"description": "A short description of your package",
"keywords": [],
"repository": "https://github.com/atom/descam",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"private": true,
"activationHooks": "core:loaded-shell-environment",
"activationCommands": {
"atom-workspace": [
"descam:toggle",
"descam:help",
"descam:printAML",
"descam:printITL",
"descam:printVHDL",
"descam:printCFGDot",
"descam:toggleLintOnSave"
]
},
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
},
"consumedServices": {
"linter-indie": {
"versions": {
"2.0.0": "consumeLinter"
}
}
},
"dependencies": {
"dotenv": "^8.1.0",
"atom-linter": "^4.3.3",
"sb-exec": "^1.0.4",
"shelljs": "^0.5.0",
"fs-extra": "^0.26.1",
"split-string": "^0.1.0",
"named-js-regexp": "^1.3.1"
},
"devDependencies": {
"eslint": "latest"
},
"eslintConfig": {
"env": {
"es6": true,
"browser": true,
"node": true
},
"globals": {
"atom": true
}
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
}