-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.99 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
{
"name": "starlark",
"version": "0.1.0",
"description": "An implementation of the Starlark language in TypeScript.",
"keywords": [
"starlark"
],
"homepage": "https://github.com/Hanaasagi/starlark-ts",
"license": "Apache License 2.0",
"author": "Hanaasagi <[email protected]>",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"start": "ts-node dist/main.js",
"start:dev": "nodemon --ext js,ts,json,env --exec 'node --experimental-specifier-resolution=node --loader ts-node/esm' src/main.ts",
"prepare": "husky install",
"build": "tsc --project tsconfig.build.json",
"build:clean": "rm -rf tsconfig.build.tsbuildinfo && rm -rf ./dist",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --detectOpenHandles",
"test:coverage": "npm run test -- --coverage",
"test:ci": "npm run test -- --colors --coverage --ci",
"lint": "eslint --ext .ts,.js .",
"format": "prettier \"./**\" --write --ignore-unknown",
"format:check": "prettier \"./**\" --ignore-unknown --check"
},
"dependencies": {
"commander": "^10.0.0",
"debug": "^4.3.4",
"ts-results": "^3.3.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@jest/globals": "^28.0.0",
"@jest/types": "^28.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "^27.5.2",
"@types/node": "^18.15.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.15",
"prettier": "2.8.7",
"supertest": "^6.2.2",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}