-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 998 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
32
33
34
35
36
37
{
"name": "enigma-machine",
"version": "1.1.3",
"description": "Enigma simulator in Typescript",
"main": "./build/index.js",
"browser": "./build/browser.js",
"typings": "./build/typings/index.d.ts",
"types": "./build/typings/index.d.ts",
"dependencies": {},
"devDependencies": {
"prettier": "^2.3.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5"
},
"scripts": {
"test": "node tests/index.test.js",
"build": "tsc",
"watch": "tsc -w",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"enigma",
"simulator"
],
"author": "RichardDorian",
"license": "MIT",
"homepage": "https://github.com/RichardDorian/enigma-machine#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RichardDorian/enigma-machine.git"
},
"bugs": {
"url": "https://github.com/RichardDorian/enigma-machine/issues"
}
}