This repository has been archived by the owner on Mar 30, 2020. It is now read-only.
generated from robin-hartmann/template-node-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.57 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
{
"name": "divide-by-shape-reverse",
"version": "0.1.2",
"description": "A (failed) attempt to create a reverse algorithm for the 'divide by shape' game mode from 'Dual Brain Vol. 3'",
"author": "contact.robin.hartmann@gmail.com",
"license": "MIT",
"main": "dist/lib/lib.js",
"bin": "dist/bin/bin.js",
"engines": {
"node": ">=10.18.1"
},
"repository": "github:robin-hartmann/divide-by-shape-reverse",
"dependencies": {
"@types/chalk": "^2.2.0",
"@types/diff": "^4.0.2",
"chalk": "^3.0.0",
"diff": "^4.0.2"
},
"devDependencies": {
"@types/node": "^13.7.7",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^16.1.1",
"prettier": "^2.0.2",
"shx": "^0.3.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "npm run lint",
"build": "npm run build-only",
"prebuild-only": "npm run clean",
"build-only": "tsc -p tsconfig.json",
"clean": "shx rm -rf dist/",
"lint": "eslint . --ext .ts",
"start": "npm run start:ts",
"start:ts": "ts-node src/bin/bin.ts",
"start:js": "node dist/bin/bin.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}