This repository has been archived by the owner on Feb 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
{
"name": "@aspecto/cli",
"version": "0.1.19",
"description": "Aspecto CLI",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm build",
"prettier": "prettier --config .prettierrc --write \"src/**/*.{ts,js,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/aspecto-io/aspecto-cli.git"
},
"author": "Aspecto LTD",
"license": "ISC",
"bugs": {
"url": "https://github.com/aspecto-io/aspecto-cli/issues"
},
"homepage": "https://github.com/aspecto-io/aspecto-cli#readme",
"dependencies": {
"axios": "^0.19.0",
"cli-ux": "^5.3.3",
"colors": "^1.4.0",
"commander": "^4.0.1",
"jsonpath": "^1.0.2",
"ts-node": "^8.5.4",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/jsonpath": "^0.2.0",
"@types/node": "^12.12.14",
"@types/uuid": "^3.4.6",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"typescript": "^3.7.2"
},
"bin": {
"aspecto": "./dist/cli-program.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run build"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"prettier --write",
"git add"
]
}
}