This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
126 lines (126 loc) · 3.64 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "es2015-i18n-tag",
"version": "0.0.0-development",
"description": "ES2015 template literal tag for i18n and l10n translation and localization",
"author": {
"email": "[email protected]",
"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": "https://github.com/skolmer/es2015-i18n-tag.git"
},
"bugs": {
"url": "https://github.com/skolmer/es2015-i18n-tag/issues",
"email": "[email protected]"
},
"engines": {
"node": ">= 4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"benchmark": "^2.1.4",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.16.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"intl": "^1.2.5",
"jest": "^22.1.4",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2",
"semantic-release": "^12.2.5",
"shx": "^0.2.2",
"travis-deploy-once": "^4.3.3",
"typedoc": "^0.9.0",
"validate-commit-msg": "^2.14.0",
"webpack": "^3.10.0"
},
"scripts": {
"prepublish": "npm run lint && npm run clean && npm run build",
"test": "npm run test:local && npm run report-coverage",
"report-coverage": "shx cat ./coverage/lcov.info | coveralls",
"test:local": "npm run lint && jest",
"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 \"docs(pages): Updated pages\" && git subtree push --prefix pages origin gh-pages",
"docs": "typedoc --out ./pages/docs/ ./lib/index.d.ts --excludeExternals --module commonjs --readme ./README.md --target ES6 --includeDeclarations --hideGenerator --name es2015-i18n-tag --mode file --media ./images",
"commit": "git add . && git cz",
"commit-staged": "git cz",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"pre-commit": "npm run test:local",
"commit-msg": "validate-commit-msg",
"bench": "node ./benchmark.js"
},
"main": "./dist/lib/index.js",
"typings": "./dist/lib/index.d.ts",
"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/"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}