-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.26 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
{
"name": "typosquotter",
"version": "0.0.7",
"description": "A NodeJS tool for generating typosquotted domain names",
"homepage": "https://github.com/b4dnewz/node-typosquotting",
"author": {
"name": "b4dnewz",
"email": "filippo@codekraft.it",
"url": "https://b4dnewz.github.io/"
},
"license": "MIT",
"repository": "b4dnewz/node-typosquotting",
"files": [
"lib",
"dist"
],
"main": "lib/index.js",
"browser": "dist/main.js",
"keywords": [
"typosquotting",
"typosquotter"
],
"scripts": {
"pretest": "npm run lint",
"precommit": "lint-staged",
"prepublish": "npm run build",
"prebuild": "npm run test",
"test": "jest --coverage",
"lint": "eslint --fix .",
"build": "webpack"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.13.0",
"jest": "^24.1.0",
"jest-cli": "^24.1.0",
"lint-staged": "^8.1.3",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"env": {
"jest": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6
}
},
"jest": {
"testEnvironment": "node"
}
}