forked from skolmer/es2015-i18n-tag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.92 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "es2015-i18n-tag",
"description": "ES2015 template literal tag for i18n and l10n translation and localization",
"version": "1.1.1",
"author": {
"email": "steffen@kolmer.net",
"name": "Steffen Kolmer",
"url": "http://kolmer.net"
},
"keywords": [
"javascript",
"JS",
"ES6",
"ES2015",
"Intl",
"l10n",
"i18n",
"translation",
"localization",
"internationalization",
"template literal",
"tagged template",
"template tag",
"es2015-i18n-tag",
"i18n-tag-schema",
"vscode-i18n-tag-schema",
"babel-plugin-i18n-tag-translate"
],
"icon": "images/es2015-i18n-tag-icon.png",
"license": "MIT",
"homepage": "http://i18n-tag.kolmer.net",
"repository": {
"type": "git",
"url": "git://github.com/skolmer/es2015-i18n-tag.git"
},
"bugs": {
"url": "https://github.com/skolmer/es2015-i18n-tag/issues",
"email": "steffen@kolmer.net"
},
"engines": {
"node": ">= 4.0.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.14",
"eslint": "^2.11.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.8.1",
"intl": "^1.2.5",
"jest": "^16.0.1",
"npm-run-all": "^2.1.1",
"rimraf": "^2.5.2",
"shx": "^0.1.4",
"typedoc": "^0.4.4",
"webpack": "^1.13.1"
},
"scripts": {
"prepublish": "npm run lint && npm run clean && npm run build",
"test": "jest && npm run report-coverage",
"report-coverage": "shx cat ./coverage/lcov.info | coveralls",
"test:watch": "jest --watch",
"clean": "rimraf dist/lib/**/*",
"build": "npm-run-all --parallel build:*",
"build:main": "babel lib -d dist/lib --source-maps --copy-files",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"lint": "eslint lib",
"pushdocs": "git add pages && git commit -m \"Updated pages\" && git subtree push --prefix pages origin gh-pages",
"docs": "typedoc --out ./pages/docs/ ./lib/index.d.ts --module commonjs --readme ./README.md --target ES6 --includeDeclarations --hideGenerator --name es2015-i18n-tag --mode file --media ./images"
},
"main": "./dist/lib",
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"lib/*"
],
"coverageReporters": [
"json",
"lcov",
"text-summary",
"text"
],
"coverageThreshold": {
"global": {
"branches": 98,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleFileExtensions": [
"js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/__tests__/data/"
]
}
}