-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "laux-compiler",
"version": "1.6.0",
"description": "LAUX superset of Lua which compiles LAUX code to Lua",
"main": "dist/index.js",
"private": false,
"dependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"chokidar": "^3.5.3",
"commander": "^2.9.0",
"detect-indent": "^5.0.0",
"extend": "^3.0.0",
"fast-glob": "^3.2.4",
"fs-jetpack": "^0.11.0",
"lodash": "^4.17.4",
"luamin": "^1.0.4",
"mocha": "^10.2.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"@babel/cli": "^7.22.6",
"@babel/core": "^7.22.6",
"@babel/preset-env": "^7.22.6",
"@babel/register": "^7.22.5",
"@semantic-release/changelog": "^6.0.3",
"chai-subset": "^1.6.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1",
"semantic-release": "^21.0.7"
},
"scripts": {
"test": "mocha --reporter spec --require @babel/register",
"lint": "prettier --check . && eslint .",
"dev": "node dev.cjs workspace",
"format": "prettier --write .",
"build": "babel src --out-dir dist",
"prepublish": "npm run build",
"semantic-release": "semantic-release"
},
"files": [
"dist/",
"src/",
"bin/",
"index.js"
],
"author": "Atlas/8char",
"license": "MIT",
"bin": {
"lauxc": "bin/lauxc"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/8char/laux-compiler.git"
},
"keywords": [
"transpiler"
],
"bugs": {
"url": "https://github.com/8char/laux-compiler/issues"
},
"homepage": "https://github.com/8char/laux-compiler#readme"
}