-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 862 Bytes
/
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
{
"private": true,
"name": "botland-bots-typescript",
"version": "1.0.0",
"description": "Typescript-based Bot Land code",
"author": "Andrew Mao",
"license": "MIT",
"keywords": [
"botland",
"ts",
"typescript"
],
"scripts": {
"botland": "find build -name '*.js' -exec sed -i 's/var //g' {} +",
"build-clean": "rimraf build && yarn build",
"build-ts": "tsc --build",
"build": "yarn build-ts && yarn botland",
"format": "prettier --write '**/*.ts' '**/tsconfig*.json'",
"lint": "tslint --project .",
"watch": "tsc --build --watch"
},
"repository": "https://github.com/mizzao/bot.land.git",
"devDependencies": {
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.6.4"
}
}