This repository was archived by the owner on Jan 31, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.36 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.36 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@naval-base/ms",
"version": "3.1.0",
"description": "Millisecond conversion utility",
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"author": "iCrawl <icrawltogo@gmail.com>",
"license": "MIT",
"scripts": {
"prebuild": "npm run lint",
"build": "tsc",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"pretest": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Naval-Base/ms.git"
},
"bugs": {
"url": "https://github.com/Naval-Base/ms/issues"
},
"homepage": "https://github.com/Naval-Base/ms#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.1.0",
"eslint-config-marine": "^9.0.6",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"typescript": "^4.0.2"
},
"eslintConfig": {
"extends": "marine/prettier/node",
"parserOptions": {
"project": "tsconfig.eslint.json"
},
"env": {
"jest": true
},
"rules": {
"@typescript-eslint/naming-convention": 0
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
}
}
}