-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.55 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
{
"name": "REPLACE_ME",
"version": "0.0.0",
"description": "REPLACE_ME",
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"src/**/*.js",
"index.js",
"**/*.d.ts"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/altnext/REPLACE_ME.git"
},
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean",
"coverage": "jest --coverage",
"deduplicate": "yarn-deduplicate -s fewer",
"docs": "yarn typedoc --disableSources index.ts",
"lint": "eslint . --cache",
"prepare": "husky install",
"prerelease": "yarn build",
"release": "changeset publish",
"test": "jest --ci",
"type": "tsc --noEmit --noImplicitAny"
},
"resolutions": {
"prettier": "2.5.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.2",
"@changesets/cli": "2.18.1",
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@jest/types": "27.4.2",
"@types/jest": "27.0.3",
"cspell": "5.13.2",
"eslint-config-altnext": "2.2.1",
"husky": "7.0.4",
"jest": "27.4.3",
"jest-junit": "13.0.0",
"lint-staged": "12.1.2",
"ts-jest": "27.1.1",
"ts-node": "10.4.0",
"typedoc": "0.22.10",
"typedoc-plugin-markdown": "3.11.7",
"typescript": "4.5.2",
"yarn-deduplicate": "3.1.0"
},
"author": "Altnext Gorillaz",
"license": "MIT",
"eslintIgnore": [
"dist",
"node_modules"
],
"lint-staged": {
"**/*": [
"cspell lint"
],
"**/*.{js,jsx,ts,tsx}": [
"eslint --quiet --cache"
]
}
}