-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
{
"name": "tsconfigs",
"version": "5.0.0",
"description": "Reusable TypeScript configuration files to extend from.",
"scripts": {
"release": "standard-version --skip.tag",
"readme-toc": "doctoc readme.md",
"lint": "eslint .",
"transpile": "tsc",
"unit": "ava",
"test": "run-s lint transpile unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mightyiam/tsconfigs.git"
},
"keywords": [
"tsconfig",
"common",
"extend",
"extends"
],
"author": "Shahar Or <[email protected]> (https://mightyi.am/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/mightyiam/tsconfigs/issues"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run test"
}
},
"homepage": "https://github.com/mightyiam/tsconfigs#readme",
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/travis-cli": "11.0.0",
"@types/node": "14.14.17",
"@typescript-eslint/eslint-plugin": "4.11.1",
"ava": "3.14.0",
"doctoc": "1.4.0",
"eslint": "7.16.0",
"eslint-config-standard-with-typescript": "19.0.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-typescript": "0.14.0",
"husky": "4.3.6",
"npm-run-all": "4.1.5",
"object.fromentries": "2.0.3",
"read-pkg-up": "7.0.1",
"standard-version": "9.1.0",
"tempy": "1.0.0",
"typescript": "4.1.3"
},
"files": [
"browser-executable.json",
"browser-module.json",
"webworker-module.json",
"nodejs-executable.json",
"nodejs-module.json",
"agnostic-module.json",
"_private/common.json",
"_private/executable.json",
"_private/module.json"
]
}