-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.48 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
{
"name": "@tfaster/simple-web-l10n",
"version": "1.1.0",
"description": "A simple 'Vanilla JS' solution to translate websites written in typescript",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:es2015 && npm run build:esm && npm run build:iife",
"build:es2015": "tsc --module es2015 --target es2015 --outDir dist/es2015 --declaration",
"build:esm": "tsc --module es2015 --target es5 --outDir dist/esm --declaration",
"build:iife": "rollup -c",
"lint": "eslint src/**",
"test": "jest",
"copy-packagejson": "copy .\\package.json .\\dist",
"copy-license": "copy .\\LICENSE .\\dist",
"copy-files": "npm run copy-license && npm run copy-packagejson",
"npm-pack": "cd dist && npm pack",
"package": "npm run build && npm run copy-files && npm run npm-pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tFaster/simple-web-l10n.git"
},
"keywords": [
"l10n",
"localization",
"translation"
],
"author": "Timo Schneller",
"license": "MIT",
"bugs": {
"url": "https://github.com/tFaster/simple-web-l10n/issues"
},
"homepage": "https://github.com/tFaster/simple-web-l10n#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"codecov": "^3.8.1",
"eslint": "^7.16.0",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-license": "^2.2.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}