-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "@nsis/language-data",
"version": "0.9.2",
"description": "Data for contributed NSIS language files in JSON format",
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"typings": "./types",
"files": [
"data/",
"dist/",
"types/"
],
"scripts": {
"build:code": "rollup --config",
"build:json": "node tools/build.mjs",
"build": "npm-run-all --parallel build:*",
"lint": "eslint ./data/**/*.json ./src/*.ts --ignore-path .gitignore",
"prepare": "husky install",
"test": "npm run lint"
},
"author": "Jan T. Sott",
"license": "Zlib",
"repository": {
"type": "git",
"url": "https://github.com/NSIS-Dev/language-data.git"
},
"keywords": [
"nsis"
],
"devDependencies": {
"@nsis/mui-language-strings": "^0.3.0",
"@nsis/nlf": "^0.10.4",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-plugin-json": "^3.1.0",
"globby": "^11.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"makensis": "^2.0.8",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"util": "^0.12.3"
},
"lint-staged": {
"*.(ts|json)": "eslint --cache --fix"
}
}