-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 752 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 752 Bytes
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
{
"name": "strict-null-check-migration-tools",
"version": "1.0.0",
"description": "Scripts used to migrate Figma's codebase to strictNullChecks",
"scripts": {
"find-candidates": "tsc && node src/findCandidates.js",
"auto-add": "tsc && node src/autoAdd.js",
"find-cycles": "tsc && node src/runFindCycles.js",
"visualize": "tsc && node src/visualize.js"
},
"keywords": [
"strict",
"null",
"checks",
"strictnullchecks",
"migration"
],
"author": "Figma Inc.",
"license": "MIT",
"dependencies": {
"glob": "^7.1.6",
"typescript": "^5.5.3"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^12.7.4"
},
"engines": {
"node": "20.12.0",
"npm": "10.5.0"
}
}