-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.11 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
{
"name": "makensis",
"version": "2.0.8",
"description": "A Node wrapper for makensis, the NSIS compiler",
"type": "module",
"exports": "./dist/makensis.mjs",
"typings": "types/",
"files": [
"dist/",
"types/",
"LICENSE",
"README.md"
],
"engines": {
"node": "^14.8.0 || >=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/idleberg/node-makensis.git"
},
"keywords": [
"nsis",
"makensis"
],
"license": "MIT",
"dependencies": {
"@nsis/language-data": "^0.9.0",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-plugin-json": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "13.2.3",
"np": "^7.6.3",
"npm-run-all2": "^6.0.6",
"prettier": "^3.0.0",
"remark-cli": "^11.0.0",
"remark-preset-lint-recommended": "^6.1.3",
"remark-preset-prettier": "^2.0.1",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"uuid": "^9.0.0",
"uvu": "^0.5.6",
"which": "^3.0.1"
},
"scripts": {
"build": "rollup -c",
"dev": "npm run start",
"fix": "eslint --fix ./src",
"lint:code": "eslint ./src --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"lint": "npm-run-all --parallel lint:*",
"package": "np --no-yarn --any-branch",
"prepack": "npm run build",
"prepare": "husky install",
"prepublishOnly": "npm run lint && npm run build",
"start": "rollup -w -c",
"test": "uvu tests/native",
"test:wine": "uvu tests/wine"
},
"prettier": {
"embeddedLanguageFormatting": "off",
"printWidth": 240,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"useTabs": true
},
"lint-staged": {
"*.(ts|json)": "eslint --cache --fix",
"*.md": "prettier --write"
}
}