-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
119 lines (119 loc) · 2.69 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "sanipack",
"version": "2.1.0",
"description": "Enhanced Sanity.io plugin development experience",
"main": "src/index.js",
"scripts": {
"test": "tap",
"posttest": "eslint ."
},
"binname": "sanipack",
"bin": {
"sanipack": "./bin/sanipack.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rexxars/sanipack.git"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"sanity-io",
"sanity",
"plugin",
"development",
"babel",
"typescript",
"bootstrap"
],
"author": "Espen Hovlandsdal",
"license": "MIT",
"bugs": {
"url": "https://github.com/rexxars/sanipack/issues"
},
"homepage": "https://github.com/rexxars/sanipack#readme",
"dependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/traverse": "^7.15.4",
"@rexxars/choosealicense-list": "^1.1.2",
"chalk": "^4.1.2",
"discover-path": "^1.0.0",
"email-validator": "^2.0.4",
"execa": "^5.1.1",
"find-babel-config": "^1.2.0",
"get-it": "^5.0.5",
"get-latest-version": "^2.0.0",
"git-remote-origin-url": "^3.1.0",
"git-user-info": "^1.0.1",
"github-url-to-object": "^4.0.6",
"inquirer": "^8.2.0",
"meow": "^9.0.0",
"npm-packlist": "^3.0.0",
"npm-run-path": "^4.0.1",
"outdent": "^0.8.0",
"p-any": "^3.0.0",
"p-props": "^4.0.0",
"postcss": "^8.3.9",
"semver": "^7.3.5",
"spdx-license-ids": "^3.0.10",
"validate-npm-package-name": "^3.0.0",
"xdg-basedir": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-sanity": "^5.1.0",
"prettier": "^2.4.1",
"readdirp": "^3.6.0",
"rimraf": "^3.0.2",
"tap": "^15.0.10"
},
"tap": {
"jobs": 2,
"browser": false,
"timeout": 120,
"reporter": "spec",
"check-coverage": false,
"coverage-report": [
"html"
]
},
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
},
"eslintConfig": {
"extends": [
"sanity",
"prettier"
],
"env": {
"node": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"no-await-in-loop": "off",
"no-console": "off",
"complexity": "off",
"id-length": "off",
"max-depth": "off",
"no-sync": "off",
"strict": "off"
},
"ignorePatterns": [
"test/fixtures/**"
]
}
}