-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
53 lines (53 loc) · 1.7 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
{
"name": "p5.ts",
"version": "1.0.0",
"description": "Generate TypeScript declarations for p5.js",
"main": "index.js",
"repository": "github:p5-types/p5.ts",
"scripts": {
"dtslint": "dtslint types/p5",
"dtslint:samples": "dtslint types/p5/samples",
"download-p5": "tsx src/commands/download-p5.ts",
"generate": "tsx src/commands/generate.ts",
"patch": "tsx patches/patch.ts",
"test": "jest --coverage",
"all_with_patch": "npm run download-p5 && npm run generate && npm run patch && npm test",
"all": "npm run download-p5 && npm run generate && npm test",
"watch:test": "jest --watch"
},
"license": "LGPL-2.1",
"dependencies": {
"glob": "^10.2.2",
"html2plaintext": "^2.1.2",
"semver": "^7.5.0",
"typescript": "^4.9.4",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"@definitelytyped/dtslint": "^0.0.159",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.17",
"esbuild-jest": "^0.5.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"tsx": "^3.12.2"
},
"files": [
"test/**/*.js"
],
"overrides": {
"has": "npm:@nolyfill/has@latest",
"hasown": "npm:@nolyfill/hasown@latest",
"isarray": "npm:@nolyfill/isarray@latest",
"jsonify": "npm:@nolyfill/jsonify@latest",
"typedarray": "npm:@nolyfill/typedarray@latest",
"function-bind": "npm:@nolyfill/function-bind@latest",
"has-proto": "npm:@nolyfill/has-proto@latest",
"has-symbols": "npm:@nolyfill/has-symbols@latest",
"object-keys": "npm:@nolyfill/object-keys@latest",
"set-function-length": "npm:@nolyfill/set-function-length@latest"
}
}