This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.54 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
{
"name": "@maboroshi/type-assertions",
"version": "1.0.2",
"description": "Type assertion utilities.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"start": "npm run test:watch",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/maboroshi-inc/type-assertions.git"
},
"author": "Maboroshi Co., Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/maboroshi-inc/type-assertions/issues"
},
"homepage": "https://github.com/maboroshi-inc/type-assertions#readme",
"devDependencies": {
"@maboroshi/eslint-config": "^2.0.7",
"@maboroshi/prettier-config": "^1.0.0",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.4",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^24.9.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "^24.3.0",
"typescript": "^3.8.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,css,md}": [
"prettier --write",
"git add"
]
}
}