-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
73 lines (73 loc) · 2.39 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
{
"name": "quantum-tensors",
"version": "0.4.15",
"description": "Tensor numerics for quantum information and quantum optics. Used in Quantum Game with Photons.",
"main": "dist/quantum-tensors.js",
"module": "dist/quantum-tensors.esm.js",
"unpkg": "dist/quantum-tensors.min.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"imgs"
],
"repository": "https://github.com/Quantum-Flytrap/quantum-tensors",
"author": "Piotr Migdal",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"add": "^2.0.6",
"benny": "^3.7.1",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.4",
"typedoc": "^0.22.13",
"typescript": "^4.6.3",
"yarn-upgrade-all": "^0.7.0"
},
"scripts": {
"benchmark": "ts-node ./benchmarks/benchmark.ts",
"build-old": "tsc --pretty",
"build": "rollup -c && tsc",
"test": "tsc --noEmit -p . && jest --coverage --no-cache",
"test-sim": "tsc --noEmit -p . && jest --no-cache ./tests/Simulation.test.ts",
"build-docs": "typedoc --out docs src",
"build-and-deploy-docs": "typedoc --out docs src && touch docs/.nojekyll && push-dir --dir=docs --branch=gh-pages --cleanup",
"build-defs": "tsc --declaration --outDir . --emitDeclarationOnly",
"eslint-fix": "eslint --fix src/*.ts",
"lint": "eslint src/*.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test",
"postversion": "git push && git push --tags && npm run build-and-deploy-docs"
},
"dependencies": {
"@types/lodash": "^4.14.181",
"lodash": "^4.17.21"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}