-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
51
52
53
54
55
56
57
{
"name": "nengo",
"version": "3.0.0",
"description": "An npm module to convert Gregorian calendar years into the Japanese Emperor format",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -R spec -r ts-node/register './test.ts'",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec -r node_modules/ts-node/register test.ts",
"lint": "./node_modules/.bin/eslint test.ts index.ts",
"prettier": "prettier --write test.ts index.ts",
"build": "npm test && tsc"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KevinAdu/nengo.git"
},
"keywords": [
"calendar",
"japanese",
"year",
"gregorian",
"date",
"日にち",
"日付",
"年号",
"年",
"日本語",
"カレンダー"
],
"author": "KevinAdu",
"license": "ISC",
"bugs": {
"url": "https://github.com/KevinAdu/nengo/issues"
},
"homepage": "https://github.com/KevinAdu/nengo#readme",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"chai": "^4.2.0",
"coveralls": "^3.0.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^8.1.3",
"prettier": "^1.16.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.3"
}
}