forked from three-types/three-ts-types
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.26 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.26 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
{
"private": true,
"license": "MIT",
"scripts": {
"prepare": "husky install",
"test-all": "node --require source-map-support/register node_modules/@definitelytyped/dtslint-runner/ --path .",
"test": "node --require source-map-support/register node_modules/@definitelytyped/dtslint/ types/three",
"lint": "node --require source-map-support/register node_modules/@definitelytyped/dtslint/ types/three",
"format": "prettier --write .",
"format-check": "prettier --check .",
"contributors:add": "all-contributors add"
},
"devDependencies": {
"@definitelytyped/definitions-parser": "latest",
"@definitelytyped/dtslint": "latest",
"@definitelytyped/dtslint-runner": "latest",
"@definitelytyped/header-parser": "latest",
"@definitelytyped/utils": "latest",
"@types/stats.js": "*",
"@types/webxr": "*",
"all-contributors-cli": "^6.26.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "2.8.8",
"source-map-support": "^0.5.21",
"typescript": "latest"
},
"workspaces": [
"examples-testing",
"types/three"
],
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}