This repository was archived by the owner on Jul 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.15 KB
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
{
"name": "codemirror-nsis",
"description": "NSIS mode for CodeMirror 5",
"version": "0.12.0",
"author": "Jan T. Sott",
"license": "MIT",
"exports": {
".": {
"import": "./dist/codemirror-nsis.mjs",
"require": "./dist/codemirror-nsis.cjs"
},
"./mode": {
"import": "./dist/nsis-mode.mjs",
"require": "./dist/nsis-mode.cjs"
}
},
"files:": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build:code": "rollup -c",
"build:style": "postcss src/theme.css -o dist/theme.min.css",
"build": "npm-run-all --parallel build:*",
"dev": "npm run watch",
"fix:code": "eslint ./src/nsis.js --fix --ignore-path .gitignore",
"fix:style": "stylelint ./src/theme.css --fix",
"fix": "npm-run-all --parallel fix:*",
"lint:code": "eslint ./src/nsis.js --ignore-path .gitignore",
"lint:style": "stylelint ./src/theme.css",
"lint": "npm-run-all --parallel lint:*",
"prepare": "husky install",
"serve": "sirv -B ./",
"start": "npm run watch",
"test": "exit 0",
"watch:code": "rollup -w -c",
"watch:style": "postcss -w src/theme.css -o dist/theme.min.css",
"watch": "npm-run-all --parallel watch:*"
},
"keywords": [
"codemirror",
"mode",
"nsis",
"nullsoft",
"syntax highlighter"
],
"homepage": "http://idleberg.github.io/codemirror-nsis/",
"repository": "https://github.com/idleberg/codemirror-nsis",
"dependencies": {
"@types/codemirror": "^5.60.8",
"codemirror": "^6.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-terser": "^0.4.3",
"babel-eslint": "^10.1.0",
"cssnano": "^6.0.1",
"eslint": "^8.44.0",
"eslint-plugin-json": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"npm-run-all2": "^6.0.5",
"postcss": "^8.4.24",
"postcss-cli": "^10.1.0",
"rollup": "^3.26.0",
"sirv-cli": "^2.0.2",
"stylelint": "^15.9.0",
"stylelint-config-recommended": "^12.0.0"
},
"lint-staged": {
"*.(js|json)": "eslint --cache --fix",
"*.(css)": "stylelint --cache --fix"
}
}