-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.95 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
{
"name": "build-makensis",
"version": "0.27.0",
"description": "Atom Build provider for makensis, compiles NSIS",
"repository": "https://github.com/idleberg/atom-build-makensis",
"license": "MIT OR GPL-2.0",
"scripts": {
"build": "node ./tools/build.mjs",
"clean": "rimraf ./lib",
"dev": "npm run start",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"lint:js": "eslint ./src --ignore-path .gitignore",
"lint": "npm-run-all --parallel lint:*",
"start": "cross-env ESBUILD_WATCH=true node ./tools/build.mjs",
"test": "npm run lint"
},
"keywords": [
"buildprovider",
"compile",
"nsis",
"makensis",
"windows",
"installer",
"build tool",
"compiler",
"linter",
"lint"
],
"main": "lib/provider.js",
"engines": {
"atom": ">=1.56.0 <2.0.0"
},
"activationHooks": [
"core:loaded-shell-environment"
],
"providedServices": {
"builder": {
"description": "Compiles NSIS scripts",
"versions": {
"2.0.0": "provideBuilder"
}
}
},
"package-deps": [
[
{
"name": "buildium"
},
{
"name": "build"
}
]
],
"dependencies": {},
"devDependencies": {
"@atxm/developer-console": "^0.5.0",
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"atom-package-deps": "^7.2.3",
"atom-satisfy-dependencies": "^0.3.0",
"cross-env": "^7.0.3",
"esbuild": "^0.12.15",
"eslint": "^7.31.0",
"eslint-plugin-json": "^3.0.0",
"husky": "^4.3.8",
"lint-staged": "^11.0.1",
"log-symbols": "^5.0.0",
"npm-run-all": "^4.1.5",
"remark-cli": "^9.0.0",
"rimraf": "^3.0.2",
"which": "^2.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"volta": {
"node": "14.17.0",
"yarn": "1.22.10"
}
}