-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
121 lines (121 loc) · 2.95 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "qcs-cli",
"description": "The Rigetti QCS Command Line Interface (CLI)",
"version": "1.0.0",
"author": " @rigetti",
"private": false,
"bin": {
"qcs": "./bin/run"
},
"bugs": "https://github.com/rigetti/qcs-cli/issues",
"dependencies": {
"@oclif/command": "^1.5.0",
"@oclif/config": "^1.7.4",
"@oclif/plugin-help": "^2.1.1",
"@types/cli-color": "^0.3.29",
"@types/ini": "^1.3.29",
"ajv": "^6.10.2",
"babel-core": "^6.26.3",
"chrono-node": "^1.3.5",
"cli-color": "^2.0.0",
"cli-ux": "^5.0.0",
"fs": "0.0.1-security",
"handlebars": "^4.5.3",
"ini": "^1.3.5",
"moment": "^2.22.2",
"moment-timezone": "^0.5.23",
"os": "^0.1.1",
"querystring": "^0.2.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.18.0",
"@oclif/test": "^1.2.0",
"@oclif/tslint": "^3.1.0",
"@types/assert": "^1.4.1",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/moment-timezone": "^0.5.9",
"@types/nock": "^9.3.0",
"@types/node": "^10.9.4",
"@types/request": "^2.47.1",
"@types/request-promise-native": "^1.0.17",
"@types/yamljs": "^0.2.30",
"assert": "^1.4.1",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"globby": "^8.0.1",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"sinon": "^7.2.5",
"ts-mocha": "^2.0.0",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=6.4.1"
},
"files": [
"/.oclif.manifest.json",
"/bin",
"/lib"
],
"homepage": "https://github.com/rigetti/qcs-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/test-utils.ts"
],
"extension": [
".ts"
]
},
"oclif": {
"commands": "./lib/commands",
"bin": "qcs",
"plugins": [
"@oclif/plugin-help"
],
"hooks": {
"init": [
"./lib/hooks/setConfig"
]
}
},
"repository": "rigetti/qcs-cli",
"scripts": {
"oclif": "./node_modules/@oclif/dev-cli/bin/run",
"lint": "tslint --project .",
"postpack": "rm -f .oclif.manifest.json",
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
"test": "FOREST_ENVIRONMENT=test nyc ts-mocha -p tsconfig.json --require ts-node/register/transpile-only --forbid-only \"test/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"babel": {
"presets": [
"stage-3",
"latest"
]
}
}