-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.48 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
{
"name": "typ3-cli",
"version": "1.0.4",
"description": "CLI tool for creating typed definition files from ABI",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyCryptoHQ/typ3-cli.git"
},
"author": "William Prado, Mike Stupich, Henry Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/MyCryptoHQ/typ3-cli/issues"
},
"homepage": "https://github.com/MyCryptoHQ/typ3-cli#readme",
"devDependencies": {
"@types/node": "^8.0.34",
"jest": "^22.4.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"dependencies": {
"@types/jest": "^22.2.0",
"command-line-args": "^4.0.7",
"command-line-usage": "^4.0.1",
"npm": "^5.7.1",
"require-relative": "^0.8.7",
"ts-jest": "^22.4.2",
"tslint-config-prettier": "^1.10.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testURL": "http://localhost",
"testRegex": "/__tests__/.*\\.(ts|tsx)$"
},
"bin": {
"typ3-cli": "./dist/index.js"
},
"precommit": "lint-staged",
"prettier:diff": "prettier --write --config ./.prettierrc --list-different \"common/**/*.ts\" \"common/**/*.tsx\"",
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write --config ./.prettierrc --config-precedence file-override",
"git add"
]
}
}