forked from twilio-labs/plugin-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
{
"name": "@twilio-labs/plugin-token",
"description": "Generate a temporary token for use in test applications",
"version": "5.0.0",
"author": "Twilio @twilio",
"bugs": "https://github.com/twilio-labs/plugin-token/issues",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@oclif/core": "^1.13.10",
"@twilio/cli-core": "^7.0.0"
},
"devDependencies": {
"@oclif/test": "^1.2.5",
"@twilio/cli-test": "^2.0.2",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-oclif": "^1.5.1",
"globby": "^8.0.2",
"mocha": "^8.2.1",
"nyc": "^14.1.1",
"sinon": "^9.2.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/yarn.lock"
],
"homepage": "https://github.com/twilio-labs/plugin-token",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"name": "token",
"commands": "./src/commands",
"bin": "twilio",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"token": {
"description": "Generate a temporary token for use in test applications"
},
"token:chat": {
"description": "Generate token for use in Chat applications"
},
"token:sync": {
"description": "Generate token for use in Sync applications"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/twilio-labs/plugin-token.git"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint --ignore-path .gitignore . && npm audit",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc --check-coverage --lines 90 --reporter=html --reporter=text mocha --forbid-only \"test/**/*.test.js\""
}
}