-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "lua-wasm-bindings",
"version": "0.3.1",
"description": "",
"files": [
"dist/**/*.js",
"dist/**/*.wasm",
"dist/**/*.ts"
],
"types": "dist/lua.d.ts",
"scripts": {
"build": "tsc && npm run copy-glue-dts",
"complete-build": "./scripts/setup.sh && npm run build",
"copy-glue-dts": "copyfiles -u 1 \"src/glue/*.d.ts\" dist/",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:prettier": "prettier --check . || (echo 'Run `npm run fix:prettier` to fix it.' && exit 1)",
"lint:eslint": "eslint . --ext .js,.ts",
"fix:prettier": "prettier --write .",
"preversion": "npm run complete-build",
"postversion": "git push && git push --tag",
"test": "npx ts-node simple-test.ts"
},
"author": "Lorenz Junglas (Lolleko)",
"repository": "https://github.com/TypeScriptToLua/lua-wasm-bindings",
"license": "MIT",
"devDependencies": {
"@types/emscripten": "^1.39.4",
"@types/node": "^14.14.31",
"copyfiles": "^2.4.1",
"eslint": "^7.21.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.2.1",
"ts-node": "^10.7.0",
"typescript": "^4.2.2"
},
"dependencies": {
"@types/semver": "^7.3.9",
"semver": "^7.3.7"
}
}