-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.92 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
71
72
73
74
75
76
77
{
"name": "twilio-style-cli",
"version": "0.1.1",
"description": "Twilio Style CLI",
"keywords": [
"oclif"
],
"homepage": "https://github.com/twilio-labs/twilio-style-cli",
"bugs": "https://github.com/twilio-labs/twilio-style-cli/issues",
"repository": "twilio-labs/twilio-style-cli",
"license": "MIT",
"contributors": [
{
"name": "Alice Cai",
"email": "ahcai@berkeley.edu"
},
{
"name": "Kousha Talebian",
"email": "k@ousha.me"
}
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"twilio-style": "./bin/run"
},
"files": [
"bin/",
"lib/",
"npm-shrinkwrap.json",
"oclif.manifest.json"
],
"scripts": {
"prebuild:package": "npm run clean",
"build:package": "tsc -b",
"build:readme": "oclif-dev manifest && oclif-dev readme",
"postbuild:readme": "rm -f oclif.manifest.json",
"clean": "rm -rf lib",
"lint": "eslint --ext ts src/",
"lint:fix": "npm run lint -- --fix",
"prepack": "npm run build:package && npm run build:readme",
"postpack": "rm -f oclif.manifest.json",
"prepare": "husky install",
"test": "jest",
"test:ci": "jest --coverage",
"version": "oclif-dev readme && git add README.md"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/errors": "^1.3.4",
"@oclif/parser": "^3.8.5",
"@oclif/plugin-help": "^3.2.2",
"eslint": "^7.27.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@types/eslint": "^7.2.13",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.2",
"babel-jest": "^27.0.2",
"chai": "^4.3.4",
"eslint-config-twilio-ts": "^1.34.2",
"husky": "^6.0.0",
"jest": "^27.0.4",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"oclif": {
"commands": "./lib/commands",
"bin": "twilio-style",
"plugins": [
"@oclif/plugin-help"
]
}
}