-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.07 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
{
"name": "dedupe-assert",
"version": "0.0.0--semantic-release",
"description": "asserts that packages are truly deduped",
"main": "src/mod.js",
"types": "src/mod.d.ts",
"scripts": {
"build": "tsc",
"clean": "del 'src/**/*.{d.ts,js,map}'",
"test": "ava",
"format": "prettier-standard '{src,test,scripts}/**/*.{js,jsx,ts,tsx}'",
"lint": "standardx '{src,test,scripts}/**/*.{js,jsx,ts,tsx}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdaringe/dedupe-assert.git"
},
"keywords": [
"dedupe",
"npm",
"yarn",
"ensure",
"assert",
"check",
"duplicate",
"redundant",
"package",
"packages"
],
"author": "cdaringe",
"license": "ISC",
"bugs": {
"url": "https://github.com/cdaringe/dedupe-assert/issues"
},
"homepage": "https://github.com/cdaringe/dedupe-assert#readme",
"bin": "./src/bin.js",
"files": [
"src"
],
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/meow": "^5.0.0",
"@types/node": "^13.9.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"ava": "^3.5.0",
"del-cli": "^3.0.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier-standard": "^16.2.1",
"semantic-release": "^17.0.4",
"standardx": "^5.0.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test,scripts}/**/*.{js,jsx,ts,tsx}": [
"npm run format",
"npm run lint"
]
},
"eslintConfig": {
"rules": {
"no-unused-vars": 0
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"ignore": [
"**/*.d.ts"
]
},
"dependencies": {
"meow": "^6.1.0",
"natural-sort": "^1.0.0",
"snyk-resolve-deps": "^4.4.1"
},
"ava": {
"tap": true,
"files": [
"tests/**/*.test.js"
]
}
}