-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "@microsoft/quantum-viz.js",
"version": "1.0.6",
"description": "quantum-viz.js is a configurable tool for visualizing quantum circuits.",
"main": "dist/qviz.min.js",
"scripts": {
"build": "tsc",
"build:prod": "tsc && webpack",
"coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm run lint && npm run test && npm run build:prod",
"start": "tsc -w",
"test": "jest"
},
"files": [
"README.md",
"LICENSE.txt",
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/quantum-viz.js"
},
"keywords": [
"quantum",
"circuits",
"visualization"
],
"author": "Microsoft Quantum",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/prettier": "2.6.0",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"canvas": "^2.6.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "2.6.0",
"terser-webpack-plugin": "^4.1.0",
"ts-jest": "^26.1.2",
"ts-loader": "^8.0.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"homepage": "https://github.com/microsoft/quantum-viz.js#readme"
}