-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "canvas-sequencer",
"version": "3.1.0",
"description": "Store, serialize, parse, and execute sequences of canvas context instructions.",
"author": "Michael van der Kamp <[email protected]>",
"source": "index.js",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvanderkamp/canvas-sequencer.git"
},
"keywords": [
"javascript",
"canvas",
"context",
"sequence",
"graphics",
"CanvasRenderingContext2D",
"art",
"network",
"socket",
"transmit",
"JSON",
"serializable",
"parse"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mvanderkamp/canvas-sequencer/issues"
},
"homepage": "https://github.com/mvanderkamp/canvas-sequencer#readme",
"scripts": {
"build": "parcel build --no-source-maps",
"build:debug": "parcel build --no-optimize",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint index.js src tests",
"lint:fix": "eslint index.js src tests --fix",
"prepare": "npm run build",
"release": "npm run lint && npm test && npm run build && npm run coveralls",
"test": "jest",
"test:debug": "node inspect $(npm bin)/jest --runInBand"
},
"jest": {
"testEnvironmentOptions": {
"url": "http://localhost/"
}
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"coveralls-next": "^4.2.0",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"parcel": "^2.10.2"
}
}