forked from webstack-builders/import-sort-style-jsxpragma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "import-sort-style-jsxpragma",
"version": "1.0.2",
"description": "An import-sort style that places jsx pragma compiler directives and associated jsx imports at the top of code files, and groups and sorts by module with support for scoped modules.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "npm run clean & tsc -p tsconfig.build.json",
"build:watch": "tsc --watch",
"clean": "rimraf dist",
"test": "jest"
},
"author": "Kevin Brown (https://github.com/webstackdev)",
"repository": {
"type": "git",
"url": "https://github.com/webstack-builders/import-sort-style-jsxpragma.git"
},
"license": "BSD",
"devDependencies": {
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@types/is-ci": "3.0.0",
"@types/jest": "27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"eslint": "8.10.0",
"eslint-config-xo": "0.40.0",
"import-sort": "6.0.0",
"import-sort-parser-babylon": "6.0.0",
"import-sort-parser-typescript": "6.0.0",
"import-sort-style": "6.0.0",
"jest": "27.5.1",
"no-op": "1.0.3",
"node-noop": "1.0.0",
"noop": "1.0.1",
"rimraf": "3.0.2",
"theme-ui": "0.13.1",
"ts-jest": "27.1.3",
"ts-node": "10.6.0",
"tslib": "2.3.1",
"typescript": "^4.6.2"
},
"dependencies": {
"is-ci": "3.0.1"
},
"publishConfig": {
"access": "public"
}
}