-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "p5.js-svg",
"version": "1.5.1",
"main": "dist/p5.svg.cjs.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "python3 -m http.server 3000",
"lint": "eslint src/",
"build": "eslint src/ && rollup --config",
"prepublishOnly": "npm run build",
"build-doc": "jsdoc src doc/reference.md -c jsdoc.json -d doc/reference/",
"test": "karma start --browsers ChromeHeadless",
"ci-test": "./node_modules/.bin/karma start --browsers Firefox --single-run"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^11.1.1",
"@types/mocha": "^10.0.1",
"@types/p5": "^1.6.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"chai": "^4.3.4",
"eslint": "^8.42.0",
"jsdoc": "^4.0.2",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-sourcemap-loader": "^0.3.8",
"mocha": "^9.2.0",
"puppeteer": "^13.1.3",
"rollup": "^3.23.0",
"svgcanvas": "^2.2.1",
"typescript": "^5.1.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/zenozeng/p5.js-svg.git"
},
"keywords": [
"p5.js",
"svg"
],
"unpkg": "dist/p5.svg.js",
"author": "Zeno Zeng",
"license": "MIT",
"bugs": {
"url": "https://github.com/zenozeng/p5.js-svg/issues"
}
}