This repository has been archived by the owner on Aug 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.16 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "language-nsl",
"version": "4.2.0",
"description": "Atom language support for nsL Assembler, including grammar, snippets and build system",
"license": "MIT OR GPL-2.0",
"scripts": {
"build": "rollup --config",
"dev": "npm run start",
"lint:coffee": "eslint --fix ./src/*.coffee",
"lint:cson": "eslint --fix ./grammars/*.cson ./keymaps/*.cson ./snippets/*.cson",
"lint": "npm-run-all --parallel lint:*",
"prepare": "husky install",
"start": "rollup --config --watch",
"test": "npm run lint"
},
"author": {
"name": "Jan T. Sott",
"url": "http://github.com/idleberg"
},
"keywords": [
"nsl assembler",
"nsis",
"nullsoft",
"installer",
"setup"
],
"repository": {
"type": "git",
"url": "https://github.com/idleberg/atom-language-nsl"
},
"main": "lib/main",
"engines": {
"atom": ">=1.19.0 <2.0.0"
},
"package-deps": [
{
"name": "language-nsis"
},
[
{
"name": "console",
"minimumVersion": "0.4.0"
},
{
"name": "console-panel"
}
]
],
"activationCommands": {
"atom-workspace": [
"nsl-assembler:save-&-transpile"
]
},
"activationHooks": [
"language-nsl:grammar-used"
],
"consumedServices": {
"console": {
"versions": {
"^1.0.0": "consumeConsolePanel"
}
},
"console-panel": {
"versions": {
"^1.0.0": "consumeConsolePanel"
}
}
},
"dependencies": {
"atom-package-deps": "^8.0.0",
"atom-satisfy-dependencies": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"coffeescript": "^2.5.1",
"eslint": "^7.32.0",
"eslint-plugin-coffee": "^0.1.14",
"eslint-plugin-json": "^3.1.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"rollup": "^2.56.2",
"rollup-plugin-coffee-script": "^2.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"lint-staged": {
"*.(coffee|cson|json)": "eslint --cache --fix"
}
}