-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "m3k",
"version": "0.1.9",
"description": "m3k is a lisp dialect that compiles to JavaScript",
"main": "./build/index.js",
"bin": {
"m3k": "./bin/index.js",
"obsfx@m3k": "./bin/index.js"
},
"types": "./build/index.d.ts",
"keywords": [
"programming-language",
"lisp",
"dialect",
"compiler",
"transpiler",
"code generator",
"typescript",
"javascript"
],
"scripts": {
"run": "DEV=true ts-node ./src/index.ts",
"lint": "eslint src --ext .ts",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"inspect": "node --inspect -r ts-node/register ./src/index.ts",
"browserify": "browserify ./src/index.ts -s m3k -p [ tsify -p ./tsconfig.browser.json ] > ./dist/m3k.js",
"build": "tsc -b",
"watch": "tsc -b --watch"
},
"author": "Ömercan Balandı <[email protected]>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "[email protected]:obsfx/m3k.git"
},
"devDependencies": {
"@types/node": "15.12.2",
"@typescript-eslint/eslint-plugin": "4.26.1",
"@typescript-eslint/parser": "4.26.1",
"browserify": "^17.0.0",
"eslint": "7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "2.3.1",
"ts-node": "10.0.0",
"tsify": "^5.0.4",
"typescript": "4.3.2"
}
}