-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "lua-types",
"version": "2.13.1",
"description": "TypeScript definitions for Lua standard library",
"keywords": [
"lua",
"typescript",
"tstl"
],
"repository": "https://github.com/ark120202/lua-types",
"license": "MIT",
"author": "ark120202",
"files": [
"**/*.d.ts"
],
"scripts": {
"test": "jest && npm run test:test-project",
"test:test-project": "npm --prefix test/testproject ci && npm --prefix test/testproject run build",
"lint": "prettier --check ."
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"proseWrap": "never",
"singleQuote": true
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.34",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"prettier": "^2.0.5",
"ts-jest": "^26.5.3",
"typescript": "4.7.3",
"typescript-to-lua": "^1.9.0",
"@typescript-to-lua/language-extensions": "^1.0.0"
},
"peer-dependencies": {
"@typescript-to-lua/language-extensions": "^1.0.0"
}
}