-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "companies",
"private": true,
"version": "1.0.0",
"description": "List of companies that use GitHub.",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "eleventy --input=src --output=dist --serve",
"build": "eleventy --input=src --output=dist",
"pretest": "npm run lint:css",
"test": "echo \"Error: no test specified\" && exit 1",
"posttest": "npm run format",
"format": "prettier --loglevel warn --write '**/*.{js,css,md}'",
"lint:css": "stylelint '**/*.css'",
"lint": "eslint . --cache --fix --ext .js,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d2s/companies.git"
},
"keywords": [],
"author": "d2s",
"license": "ISC",
"bugs": {
"url": "https://github.com/d2s/companies/issues"
},
"homepage": "https://github.com/d2s/companies#readme",
"devDependencies": {
"@11ty/eleventy": "2.0.1",
"eslint": "9.9.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"stylelint": "16.8.2",
"stylelint-config-prettier": "9.0.5",
"stylelint-prettier": "4.1.0"
}
}