-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
43 additions
and
43 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
{ | ||
"name": "qiskit-vscode", | ||
"description": "Simplifying Qiskit to make developing quantum circuits and applications faster", | ||
"author": "Qiskit", | ||
"license": "Apache-2.0", | ||
"licenses": [ | ||
{ | ||
"type": "Apache-2.0", | ||
"url": "http://www.apache.org/licenses/LICENSE-2.0" | ||
"name": "qiskit-vscode", | ||
"description": "Simplifying Qiskit to make developing quantum circuits and applications faster", | ||
"author": "Qiskit", | ||
"license": "Apache-2.0", | ||
"licenses": [ | ||
{ | ||
"type": "Apache-2.0", | ||
"url": "http://www.apache.org/licenses/LICENSE-2.0" | ||
} | ||
], | ||
"publisher": "qiskit", | ||
"version": "0.4.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Qiskit/qiskit-vscode" | ||
}, | ||
"scripts": { | ||
"postinstall": "npm-run-all -s install:**", | ||
"install:client": "cd client && npm install && cd ..", | ||
"install:server": "cd server && npm install && cd ..", | ||
"clean": "npm-run-all -p clean:server clean:client", | ||
"clean:server": "cd server && npm run clean && cd ..", | ||
"clean:client": "cd client && npm run clean && cd ..", | ||
"compile": "npm-run-all -s compile:server compile:client", | ||
"compile:client": "cd client && npm run compile && cd ..", | ||
"compile:server": "cd server && npm-run-all -s installServer compile && cd ..", | ||
"watch:client": "tsc -w -p client/tsconfig.json", | ||
"watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json", | ||
"test": "npm-run-all -s test:server test:client", | ||
"test:server": "cd server && npm test && cd ..", | ||
"test:client": "cd client && npm test && cd ..", | ||
"package": "cd client && vsce package && cd .." | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@types/node": "^7.0.61", | ||
"typescript": "^2.8.3", | ||
"npm-run-all": "^4.1.3" | ||
} | ||
], | ||
"publisher": "qiskit", | ||
"version": "0.3.6", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Qiskit/qiskit-vscode" | ||
}, | ||
"scripts": { | ||
"postinstall": "npm-run-all -s install:**", | ||
"install:client": "cd client && npm install && cd ..", | ||
"install:server": "cd server && npm install && cd ..", | ||
"clean": "npm-run-all -p clean:server clean:client", | ||
"clean:server": "cd server && npm run clean && cd ..", | ||
"clean:client": "cd client && npm run clean && cd ..", | ||
"compile": "npm-run-all -s compile:server compile:client", | ||
"compile:client": "cd client && npm run compile && cd ..", | ||
"compile:server": "cd server && npm-run-all -s installServer compile && cd ..", | ||
"watch:client": "tsc -w -p client/tsconfig.json", | ||
"watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json", | ||
"test": "npm-run-all -s test:server test:client", | ||
"test:server": "cd server && npm test && cd ..", | ||
"test:client": "cd client && npm test && cd ..", | ||
"package": "cd client && vsce package && cd .." | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@types/node": "^7.0.61", | ||
"typescript": "^2.8.3", | ||
"npm-run-all": "^4.1.3" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
} | ||
], | ||
"publisher": "qiskit", | ||
"version": "0.3.6", | ||
"version": "0.4.0", | ||
"engines": { | ||
"node": "*" | ||
}, | ||
|