-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "cba-website",
"version": "1.0.0",
"description": "Single language website starter for CMintS",
"main": "index.js",
"scripts": {
"test": "npm run test:eslint && npm run test:stylelint && npm run test:prettier",
"test:eslint": "eslint config.js theme/js/**.js",
"test:stylelint": "stylelint theme/less/**.less",
"test:prettier": "prettylint pages/**.html pages/**.md",
"build": "cmints --static",
"deploy": "cmints --static --deploy",
"start": "cmints --start",
"dev": "cmints --start --no-cache --dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/browser-automation/cba-website.git"
},
"author": "Manvel Saroyan",
"license": "MIT",
"bugs": {
"url": "https://github.com/browser-automation/cba-website/issues"
},
"dependencies": {
"cmints": "^1.2.3",
"markdown-it-imsize": "^2.0.1",
"minimist": "^1.2.8"
},
"devDependencies": {
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"prettylint": "^2.0.0",
"stylelint": "^16.1.0",
"stylelint-config-recommended": "^14.0.0"
}
}