-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.19 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
{
"name": "typescript_llvm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"prettier": "prettier --config .prettierrc '**/*.ts' '**/*.tsx' --write",
"build": "tsc --project tsconfig.json",
"run_cycler": "npm run build && node ./out/test/cycler.js",
"run_wasmer": "npm run build && node ./out/test/run_wasmer.js",
"test": "npm run make && npm run build && node ./out/test/index.js",
"test:watch": "nodemon -e ts,tsx,json,c,h --ignore out --ignore dist --exec \"npm run test\"",
"make": "make || exit 1",
"make:watch": "nodemon -e c,h --ignore out --ignore dist --exec \"npm run make; lli out/infra/test-linked.ll\""
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@typescript/vfs": "^1.3.5",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"llvm-bindings": "^0.4.2",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}