-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 KB
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
{
"name": "detect-string-format",
"version": "0.2.3",
"description": "detect formats from array of String",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/temp3l/detect-string-format.git"
},
"bugs": {
"url": "https://github.com/temp3l/detect-string-format/issues"
},
"homepage": "https://github.com/temp3l/detect-string-format",
"keywords": [
"ajv",
"string",
"format",
"json-schema"
],
"author": "stephan Rebien",
"license": "MIT",
"private": false,
"dependencies": {
"ajv": "^6.12.0"
},
"devDependencies": {
"@types/node": "^13.1.6",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"tslint": "^5.20.1",
"typescript": "^3.7.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"ts-node-dev": "^1.0.0-pre.44"
},
"scripts": {
"tsc": "tsc",
"start": "ts-node-dev --respawn --transpileOnly ./index.ts",
"prod": "tsc && node ./build/app.js",
"lint": "tsc --noEmit && eslint '*/**/*.ts' --quiet --fix",
"build": "tsc -p ./tsconfig.json",
"build:watch": "tsc -w -p ./tsconfig.json",
"test": "ts-node-dev --respawn --transpileOnly ./test/test.ts"
}
}