-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.85 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
{
"name": "@batpb/genart-rgb",
"version": "0.4.1",
"description": "RGB color selector classes and methods for the brittni and the polar bear generative art library.",
"main": "./out/index.js",
"types": "./out/index.d.ts",
"files": [
"./out/index.d.ts",
"./out/index.d.ts.map",
"./out/index.js",
"./out/index.js.map",
"./.node-version",
"./LICENSE",
"./package.json",
"./README.md"
],
"scripts": {
"build:source": "rm -r ./out; rollup --config",
"test": "rm -r ./out/tests-coverage; jest",
"lint": "eslint ./src",
"prepack": "npm run build:source"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brittni-and-the-polar-bear/generative-art-library_color_rgb.git"
},
"keywords": [
"code art",
"generative art",
"p5",
"p5.js",
"p5js",
"p5js-library",
"typescript"
],
"author": {
"name": "brittni and the polar bear",
"url": "https://linktr.ee/brittniandthepolarbear"
},
"contributors": [
{
"name": "brittni watkins",
"url": "https://linktr.ee/brittniwatkins"
},
{
"name": "azurepolarbear",
"url": "https://linktr.ee/azurepolarbear"
}
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/brittni-and-the-polar-bear/generative-art-library_color_rgb/issues"
},
"homepage": "https://github.com/brittni-and-the-polar-bear/generative-art-library_color_rgb#readme",
"dependencies": {
"@batpb/genart-base": "^0.4.1",
"@types/p5": "^1.7.6",
"p5": "^1.11.0"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.22.5",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-ts": "^3.4.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.4.3"
}
}