-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.84 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.84 KB
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
{
"name": "pathfinder-url",
"version": "1.0.0",
"description": "URL storage for your api endpoints",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NamelsKing/pathfinder.git"
},
"keywords": [
"url",
"storage",
"web",
"api",
"library",
"caching"
],
"author": "NamelsKing",
"license": "ISC",
"bugs": {
"url": "https://github.com/NamelsKing/pathfinder/issues"
},
"homepage": "https://github.com/NamelsKing/pathfinder#readme",
"scripts": {
"prebuild": "npm run test && npm run clean",
"build": "npm run build:types && npm run build:js",
"build:js": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rimraf dist",
"lint": "eslint src/**/* --fix",
"pretty": "prettier src/**/* --write",
"prerelease": "npm run build",
"release": "npx standard-version",
"postrelease": "git push --follow-tags",
"start": "rollup -c -w",
"pretest": "npm run lint",
"test": "jest",
"test:cov": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch --notify",
"types:check": "tsc --noEmit --allowJs",
"types:watch": "npm run types:check -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run types:check",
"eslint --fix"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-typescript": "7.9.0",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-json": "4.0.3",
"@rollup/plugin-node-resolve": "7.1.3",
"@rollup/plugin-eslint": "8.0.1",
"rollup-plugin-typescript2": "0.30.0",
"@types/jest": "25.2.1",
"@typescript-eslint/eslint-plugin": "2.29.0",
"@typescript-eslint/parser": "2.29.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-prettier": "3.1.3",
"eslint-config-typescript": "3.0.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-no-storage": "1.0.2",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.2.5",
"jest": "25.4.0",
"lint-staged": "10.1.7",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"rollup": "2.7.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-terser": "5.3.0",
"tslib": "2.3.1",
"typescript": "3.8.3"
}
}