-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "@acyort/i18n",
"version": "0.2.0",
"description": "Node i18n",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "npm run test:lint && npm run test:cover",
"test:unit": "mocha --reporter dot --require intelli-espower-loader ./test",
"test:lint": "eslint .",
"test:cover": "nyc npm run test:unit",
"coverage": "nyc report --reporter=lcov npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acyortjs/i18n.git"
},
"keywords": [
"i18n",
"node"
],
"author": "LoeiFy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/acyortjs/i18n/issues"
},
"homepage": "https://github.com/acyortjs/i18n#readme",
"dependencies": {
"js-yaml": "^3.13.1",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"intelli-espower-loader": "^1.0.1",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"power-assert": "^1.6.1"
}
}