-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "p5-marker",
"version": "0.2.1",
"description": "A p5 add-on to create sketches declaratively with XML",
"type": "module",
"main": "dist/p5.marker.js",
"min": "dist/p5.marker.min.js",
"targets": {
"min": {
"optimize": true
}
},
"source": "src/index.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "npx parcel build && node utils/addBuildComment.mjs ",
"docs": "npx cem analyze --globs src --outdir docs",
"test": "npm run build && npx mocha -r esm ./unit_tests",
"watch": "npx parcel watch"
},
"keywords": [
"creative",
"coding",
"p5",
"processing"
],
"author": "Caleb Foss",
"license": "MIT",
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.5.7",
"cem-plugin-jsdoc-example": "^0.0.9",
"chai": "x",
"esm": "^3.2.25",
"jsdoc": "^3.6.11",
"mocha": "x",
"p5": "x",
"parcel": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/calebfoss/p5-marker.git"
},
"customElements": "docs/custom-elements.json"
}