-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.92 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
{
"name": "@visbot/codemirror-avs",
"version": "0.3.1",
"description": "Winamp AVS mode for CodeMirror 5",
"author": "Jan T. Sott",
"license": "MIT",
"bugs": {
"url": "https://github.com/visbot/codemirror-avs/issues"
},
"homepage": "https://visbot.github.io/codemirror-avs/",
"main": "dist/avs.min.js",
"files:": [
"dist",
"LICENSE",
"README"
],
"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/avs.js --fix --ignore-path .gitignore",
"fix:style": "stylelint ./src/theme.css --fix",
"fix": "npm-run-all --parallel fix:*",
"lint:code": "eslint ./src/avs.js --ignore-path .gitignore",
"lint:style": "stylelint ./src/theme.css",
"lint": "npm-run-all --parallel lint:*",
"prepare": "husky install",
"start": "npm run watch",
"watch:code": "rollup -w -c",
"watch:style": "postcss -w src/theme.css -o dist/theme.min.css",
"watch": "npm-run-all --parallel watch:*"
},
"repository": {
"type": "git",
"url": "https://github.com/visbot/codemirror-avs.git"
},
"keywords": [
"avs",
"winamp avs",
"codemirror",
"syntax highlighter"
],
"dependencies": {
"codemirror": ">=5.63 <6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"babel-eslint": "^10.1.0",
"cssnano": "^5.0.8",
"eslint": "^8.1.0",
"eslint-plugin-json": "^3.1.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.11",
"postcss-cli": "^9.0.1",
"rollup": "^2.58.3",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^14.0.1",
"stylelint-config-recommended": "^6.0.0"
},
"lint-staged": {
"*.(js|json)": "eslint --cache --fix",
"*.(css)": "stylelint --cache --fix"
}
}