-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·74 lines (74 loc) · 1.7 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
{
"name": "hydra-ts",
"license": "AGPL",
"version": "1.0.0",
"description": "A fork of ojack/hydra-synth in typescript, focusing on interoperability.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"dev": "vite",
"coverage": "nyc npm run test",
"prepack": "tsc || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/folz/hydra-ts.git"
},
"keywords": [
"webgl",
"regl",
"graphics",
"livecoding",
"synth"
],
"author": "folz",
"bugs": {
"url": "https://github.com/folz/hydra-ts/issues"
},
"homepage": "https://github.com/folz/hydra-ts#readme",
"dependencies": {
"regl": "^1.3.9"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/gl": "^4.1.0",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"gl": "^4.9.2",
"jest": "^27.4.5",
"jest-environment-jsdom": "^27.4.4",
"jest-environment-jsdom-global": "^3.0.0",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4",
"vite": "^2.7.10"
},
"nyc": {
"include": [
"src/**/*.js",
"index.js"
],
"reporter": [
"text",
"html"
],
"cache": false
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"extensionsToTreatAsEsm": [
".ts"
],
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"testEnvironment": "jest-environment-jsdom-global"
}
}