-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 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
{
"name": "javascript-styleguide",
"version": "0.11.0",
"description": "A guide with code snippets and definitions for javascript styleguide",
"author": "Arctic Ice Studio <development@arcticicestudio.com> (https://www.arcticicestudio.com)",
"contributors": [
{
"name": "uvacoder",
"url": "https://abc-mylinks.vercel.app"
}
],
"homepage": "https://uvacoder.github.io/javascript-styleguide/",
"repository": {
"type": "git",
"url": "git+https://github.com/uvacoder/javascript-styleguide.git"
},
"bugs": {
"url": "https://github.com/arcticicestudio/styleguide-javascript/issues"
},
"license": "MIT",
"private": true,
"engines": {
"node": "^15.13.0",
"npm": "^7.7.0"
},
"workspaces": [
"packages/@arcticicestudio/*"
],
"scripts": {
"clean": "del build/",
"docs": "run-s docs:prepare docs:compile",
"docs:compile": "gitbook build src build/docs",
"docs:dev": "run-s docs:compile docs:serve",
"docs:prepare": "gitbook install src",
"docs:serve": "gitbook serve src build/docs",
"format": "run-s format:pretty format:fix",
"format:fix": "eslint --fix .",
"format:pretty": "prettier --write .",
"lint": "run-s lint:*",
"lint:js": "eslint .",
"lint:md": "remark --no-stdout . .github/**/*.md",
"lint:pretty": "prettier --check .",
"prepare": "run-s prepare:*",
"prepare:husky": "husky install",
"test": "npm --workspaces run test"
},
"devDependencies": {
"@arcticicestudio/remark-preset-lint": ">=0.4.0 <1.0.0",
"del-cli": "^4.0.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"gitbook-cli": "2.3.2",
"husky": "^6.0.0",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"remark-cli": "^9.0.0"
}
}