-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.72 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.72 KB
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
{
"name": "p5.embroider",
"version": "0.2.1",
"description": "a p5.js library for creating digital embroidery patterns",
"main": "lib/p5.embroider.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:json": "NODE_OPTIONS=--experimental-vm-modules jest --json --outputFile=test-results.json",
"test:browser": "npx http-server . -o /test/browser/index.html",
"jsdoc": "jsdoc -c jsdoc.config.json",
"serve-docs": "npx http-server ./docs -o",
"codeformat": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"keywords": [
"embroidery",
"p5.js",
"creative-coding"
],
"author": "Yuta Nakayama",
"license": "LGPL-2.1-or-later",
"dependencies": {
"p5": "^1.9.0"
},
"devDependencies": {
"@jest/globals": "^30.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"canvas": "^3.1.0",
"clean-jsdoc-theme": "^4.2.17",
"glob": "^10.4.5",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jsdoc": "^4.0.2",
"jsdom": "^26.1.0",
"prettier": "^3.2.5",
"rollup": "^4.12.0",
"standard-version": "^9.5.0"
},
"type": "module"
}