-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "strapi-code-themes",
"version": "1.0.2",
"description": "Some coding inspired theme presets for Strapi CMS.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"eslint": "eslint --max-warnings=0 './**/*.{js,ts}'",
"eslint:fix": "eslint --fix './**/*.{js,ts}'"
},
"author": {
"name": "Boaz Poolman",
"url": "https://github.com/boazpoolman"
},
"maintainers": [
{
"name": "Boaz Poolman",
"url": "https://github.com/boazpoolman"
}
],
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/boazpoolman/strapi-code-themes/issues"
},
"homepage": "https://github.com/boazpoolman/strapi-code-themes#readme",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"typescript": "^4.6.3"
}
}