-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.97 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
{
"name": "@pi-base/dev",
"version": "0.1.0",
"description": "Developer utilities for pi-base packages",
"keywords": [
"Node"
],
"homepage": "https://topology.pi-base.org",
"bugs": {
"url": "https://github.com/pi-base/dev/issues"
},
"license": "MIT",
"author": "James Dabbs <[email protected]> (https://jdabbs.com)",
"files": [
"dist",
"tsconfig.shared.json"
],
"main": "./dist/main.js",
"bin": {
"pi-base-dev": "./dist/cli.js"
},
"types": "./dist/main.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/pi-base/dev.git"
},
"scripts": {
"build": "node ./bin/build",
"build:declarations": "tsc --emitDeclarationOnly",
"build:watch": "node ./bin/build --watch",
"fmt": "prettier --write \"src/**/*.ts\" \"*.js\"",
"fmt:check": "prettier --check \"src/**/*.ts\" \"*.js\"",
"lint": "eslint --fix \"src/**/*.ts\" \"*.js\"",
"lint:check": "eslint \"src/**/*.ts\" \"*.js\"",
"lint:staged": "lint-staged",
"prepare": "husky install",
"release": "standard-version",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watchAll"
},
"dependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@commitlint/prompt": "^12.0.1",
"@types/eslint": "^7.2.7",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"chalk": "^2.4.2",
"commander": "^6.2.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"standard-version": "^9.1.1",
"ts-jest": "^26.5.4"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"esbuild": "^0.11.2",
"typescript": "^4.2.3"
}
}