-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "netlify-shortener",
"version": "0.0.0-semantically-released",
"description": "Uses netlify's redirect functionality to make a personal URL shortener. Works beautifully :)",
"main": "dist/index.js",
"bin": {
"netlify-shortener": "./dist/index.js"
},
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com)",
"license": "MIT",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/netlify-shortener"
},
"bugs": {
"url": "https://github.com/kentcdodds/netlify-shortener/issues"
},
"homepage": "https://github.com/kentcdodds/netlify-shortener#readme",
"files": [
"dist"
],
"scripts": {
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"clipboardy": "^2.3.0",
"read-pkg-up": "^7.0.1"
},
"devDependencies": {
"kcd-scripts": "^7.1.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"no-console": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
]
}