-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 968 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
{
"name": "new-i18n",
"version": "3.0.0-5",
"description": "new-i18n is a simple and easy to use internationalization library.",
"main": "lib/index.js",
"author": "Avrumy Lunger <[email protected]>",
"scripts": {
"test": "npm run prepare && mocha -r ts-node/register test/**/*.ts",
"coverage": "nyc npm run test",
"lint": "eslint .",
"prepare": "rm -rf lib/ && tsc",
"preversion": "npm run test",
"docs": "typedoc src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/AndrewLaneX/new-i18n"
},
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"mocha": "^7.1.2",
"nyc": "^15.1.0",
"ts-node": "^8.10.1",
"typedoc": "^0.21.2",
"typescript": "^4.3.4"
}
}